jianny 0 Posted September 9, 2010 How to block pop-up window. Unsuccessful examples below #include <IE.au3> _IEErrorHandlerRegister() Global $oIE = _IECreateEmbedded() ObjEvent($oIE,"IEEvent_","DWebBrowserEvents") GUICreate("test",700,600,(@DesktopWidth -700)/2,(@DesktopHeight -600)/2) GUICtrlCreateObj($oIE,0,0,700,600) _IENavigate($oIE,"http://www.google.com") GUISetState() Do Until GUIGetMsg() = -3 Func IEEvent_NewWindow($ppDisp,$Cancel) Local $oResult = _IEAttach($ppDisp, "url") _IEQuit($oResult) EndFunc Share this post Link to post Share on other sites