Web Browser 컨트롤이 종료 될 때 이벤트

출처: 신형철(krispy@unitel.co.kr)

LRESULT OnParentNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
if ((LOWORD(wParam) == WM_DESTROY) && ( (HWND)lParam == m_hWndIE ) )         
{         
ATLTRACE("Destroying xWebCtrl\n");
// Close the parent frame window.OnQuit();                                      
}
else
{
bHandled = FALSE;
}
return 0;


참고 문서: http://support.microsoft.com/kb/253219

Write your message and submit