In need to be able to say something like
Wait untill webbrowser1 has finished loading then execute the next bit of code...
i can't use the webbrowser_documentcomplete or anything like that because this code is only need at selected times..
thankz
Printable View
In need to be able to say something like
Wait untill webbrowser1 has finished loading then execute the next bit of code...
i can't use the webbrowser_documentcomplete or anything like that because this code is only need at selected times..
thankz
Maybe:
Place a Boolean 'Flag' in the WebBrowserDocumentComplete (whatever it is)
event...
The u can check the flag in the other routine.
yep, thats pretty much the same as webbrowser.busy = False right?
sample:
if webbrowser1.busy = True Then
Wait?!??!?! Untill webbrowser1.busy = False
just can't figure out the last part..
do until web1.busy = false
doevetns
loop
perfect, works :)
thanks :)