i want to run a code immediately when the page in webbrowser1 has done loading so....can i please get the code????:confused::confused::confused::confused:
thanks every1
Printable View
i want to run a code immediately when the page in webbrowser1 has done loading so....can i please get the code????:confused::confused::confused::confused:
thanks every1
there is an event of the webbrowser, i think whendocumentcomplete
Code:WB.Navigate "http://www.yahoo.com"
Do While WB.ReadyState <> ReadyStateComplete 'or something like that
DoEvents
Loop
'start writing code here
Good Luck