I've seen a number of solutions to wait on a webbrowser to finish loading.
Most work poorly.
This works both in an Online and OffLine Mode.
Do Until WebBrowser1.ReadyState = READYSTATE_COMPLETE
DoEvents
Loop
Printable View
I've seen a number of solutions to wait on a webbrowser to finish loading.
Most work poorly.
This works both in an Online and OffLine Mode.
Do Until WebBrowser1.ReadyState = READYSTATE_COMPLETE
DoEvents
Loop
READYSTATE_COMPLETE, what is its value?
|2eM!x
Its an Enum linked with the WebBrowser control so no value needed.
Do you find that this works better than using the WebBrowser1.DocumentComplete event?
Yes I do.
What procedure would you suggest using it in?