Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting this run time error when using IID_IWebBrowser2 interface of CLSID_InternetExplorer.

Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call. This is usually a result of calling a function declared with one calling convention with a function pointer declared with a different calling convention.

This error happens when I am calling the navigate method.

share|improve this question

1 Answer

up vote 2 down vote accepted

The problem is that the client (your program) uses the call convention different from what the server (COM object) expects. You need to check the COM interface methods declaration and adjust them accordingly.

See this question for a solution of in fact the same problem.

share|improve this answer
Thanks. I have solved the problem. -Mani. – Manigandan Sep 16 '09 at 6:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.