user2058002
user2058002

Reputation:

Embedding an Internet Explorer control - C++ WinAPI

How can I embed an Internet Explorer control into my application using C++/WinAPI?

I swear I have searched; I can't find any documentation on this.

Upvotes: 8

Views: 13189

Answers (2)

CoreyStup
CoreyStup

Reputation: 1488

Try these:

Since interacting with controls such as these requires COM/COM+ programming, you could also benefit from learning those methods as well.

Upvotes: 3

demorge
demorge

Reputation: 1117

I've been searching for this too, some useful links:

IWebBrowser2: how to force links to open in new window?

http://www.codeproject.com/Articles/1788/Loading-and-parsing-HTML-using-MSHTML-3rd-way

http://www.codeproject.com/Articles/3919/Using-the-WebBrowser-control-simplified

From what I remember it was most useful to implement the IHTMLDocument interface instead of the full web browser.

Good luck!

Upvotes: 2

Related Questions