Embedding an Internet Explorer control - C++ WinAPI

后端 未结 2 968
刺人心
刺人心 2020-12-05 21:53

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.

2条回答
  •  既然无缘
    2020-12-05 22:02

    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!

提交回复
热议问题