Jump to content

How to block pop-up window.


jianny
 Share

Recommended Posts

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
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...