Can't figure out how to host web browser (e.g. IWebBrowser2) in Win32 dialog. ATL okay, no MFC

StackOverflow https://stackoverflow.com/questions/8824989

문제

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.

도움이 되었습니까?

해결책 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

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top