본문 바로가기
Programming/Tips(C++,C#)

ActiveX 컨트롤 (Web Browser)을 DLL의 Dialog에 추가하였을 때, Dialog가 안보이는 현상

by 곰네Zip 2013. 3. 25.

출처 : http://www.google.co.kr/url?sa=t&rct=j&q=mfc%20webbrowser%20control%20domodal%20fail&source=web&cd=1&ved=0CDQQmAEwAA&url=http%3A%2F%2Fforums.codeguru.com%2Fshowthread.php%3F477903-RESOLVED-Unable-to-load-dialog-holding-webbrowser-control-from-MFC-Dll&ei=ka1PUbmFLsi0iQeGtICwBQ&usg=AFQjCNFHnizgwtbF88VtM7WJkapo3P2Ubg&bvm=bv.44158598,d.aGc&cad=rjt

 

코드구루에서 찾았음..

 

요약>>

 

1. Dll의 theApp Class의 InitInstance를 오버라이딩.

  -> 다음 두 줄 추가함.

  ::AfxEnableControlContainer();
  CoInitialize(NULL);

 

2. ExitInstance도 오버라이딩

  CoUninitialize(); << 이거 추가.

 

 

반응형

댓글