Document_Completed
Can i request for a tutorial for document_completed for webbroswer.
i am still having trouble trying to check if the page is loaded or not.
i am still having trouble trying to check if the page is loaded or not.
If WebBrowser1.IsBusy then
'do nothing
Else
'Your code here
End If
If WebBrowser1.IsBusy Then
'do nothing
Else
WebBrowser1.Document.GetElementById("DataPanel1_TitleLink").InvokeMember("click")
System.Threading.Thread.Sleep(1000)
WebBrowser1.Document.GetElementById("forum__ctl0_edit").InnerText = "This Works"
End If
