Embed HTML browser into a native C++/Win32 project using Visual Studio

前端 未结 1 678
情书的邮戳
情书的邮戳 2020-12-16 03:09

I have a C++ project in the MS Visual Studio 2008 IDE (note, NO MFC, NO .NET, just native Win32 APIs!) and I was wondering if it is possible to add to it a child window that

相关标签:
1条回答
  • 2020-12-16 03:52

    You could embed an HTLM Browser (Internet Explorer) within your windows with some heavy use of COM. I used to do that and have the same need to avoid MFC, .NET, etc. This control is quite configurable, and you can remove and/or override pretty much anything.

    I did my work based on an old article in The Code Project: http://www.codeproject.com/KB/COM/cwebpage.aspx

    0 讨论(0)
提交回复
热议问题