Per example, run this code its not possible:
Code: Select all
Set objIE = WScript.CreateObject("InternetExplorer.Application","objIE_")
objIE.Visible = True
objIE.navigate "http://www.google.com"
boolBrowserRunning = True
Do While objIE.Visible
WScript.Sleep 500
Loop
Sub objIE_NavigateComplete2(ByVal pDisp, URL)
WScript.Echo "You just navigated to", URL
End Sub
Sub objIE_OnQuit()
boolBrowserRunning = False
End Sub
Thanks in advance for any help :