Internet Explorer Control Embedding - C ++ WinAPI

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

I swear I was looking; I can not find documentation on this.

+6
source share
2 answers

I also looked for this, some useful links:

IWebBrowser2: how to make links open in a 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 very useful to implement the IHTMLDocument interface instead of a full web browser.

Good luck

+2
source

Try the following:

Since interacting with controls such as these requires COM / COM + programming, you can also benefit from these methods.

+3
source

Source: https://habr.com/ru/post/907142/


All Articles