Question

I'm attempting to host a web browser inside a dialog. I am using C++ with Win32 and ATL, no MFC. There is an ActiveX control (IWebBrowser2) that implements this functionality. The trick is it appears as though I need to create a dialog class that implements dozens of COM member functions to accomplish this. Is there no easier way? I've been looking at ATL (not I cannot use MFC otherwise I would use CDHtmlDialog) but haven't found any answers.

Was it helpful?

Solution 2

Here is an excellent tutorial on how to accomplish exactly what I am trying to do. Specifically it explains how to create a Dialog using ATL but not WTL or MFC that hosts a web browser (via IWebBrowser2).

http://www.arstdesign.com/articles/Win32_dialoghelpers.html

OTHER TIPS

Here's a CodeProject article that demonstrates the process: http://www.codeproject.com/KB/wtl/wtl4mfc6.aspx

It assumes you'll be using WTL but I think it could be used with only ATL. WTL is an extension of ATL.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top