Any way around this?
Regards,
Bill
I'm trying to monitor Internet Explorer events yet haven't been able to get
it working, can anyone show me how to do this, thank you!
Set ie = WScript.CreateObject("InternetExplorer.Application", "ie_")
ie.Navigate "http://www.google.com"
ie.Visible = 1
ie.Left = 0
ie.Top = 0
ie.Height = 600
ie.Width = 800
ie.ToolBar = 1
ie.StatusBar = 1
ie.Resizable = 1
ie.StatusBar = 1
Private Sub ie_DocumentComplete(ByVal pDisp As Object, URL As Variant)
If (pDisp Is ie.Object) Then
MsgBox "your document is ready"
End If
End Sub
Private Sub ie_Stop()
MsgBox "IE has stopped"
End Sub
Private Sub ie_Quit()
MsgBox "User has quit"
End Sub
Private Sub ie_Refresh()
MsgBox "Your document has refreshed"
End Sub
-------------------
Also tried adding
WScript.ConnectObject ie,"ie_"
yet that gives an error.
Regards,
Greg Woolley