I have a code and I want it to wait somewhere in the middle before going forward.
After the WebBrowser1.Document.Window.DomWindow.execscript(\"checkPasswordConfirm();\",\"JavaSc
I've had better results by checking the browsers readystate before continuing to the next step. This will do nothing until the browser is has a "complete" readystate
Do While WebBrowser1.ReadyState <> 4
''' put anything here.
Loop