Re: Webbrowser ReadyState
Quote:
Originally Posted by lintz
Are there any other ways to "do nothing" until a page has finished displaying all text/images etc...??
Something like this ?
VB Code:
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
If pDisp Is WebBrowser1.Object Then
Debug.Print "Finished Loading"
' Do your job
Else
' Do nothing
End If
End Sub
Re: Webbrowser ReadyState
Thanks Prank, added some further code and does what I'm after :thumb:
Re: Webbrowser ReadyState