G
grove
I am using the DocumentComplete event to grab the text from a web
page. The MS documentation suggests of course I need to check the
page has finally loaded.
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object,
URL As Variant)
If (pDisp Is WB.Object) Then
Debug.Print "Web document is finished downloading"
End If
End Sub
When I try this it complains that "Object doesn't not support this
property or method"
What's wrong?
grove
page. The MS documentation suggests of course I need to check the
page has finally loaded.
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object,
URL As Variant)
If (pDisp Is WB.Object) Then
Debug.Print "Web document is finished downloading"
End If
End Sub
When I try this it complains that "Object doesn't not support this
property or method"
What's wrong?
grove