What is the event title for when a Web Browser page is loaded? I need it to work for any web browser object.
Offline
???
What do you mean?
If you're talking about that label at the top of the window so I know that its scratch and not norton spyware, it's the title of the site, the title of the web page, and then the type of browser you're using.
Offline
Double click the webbrowser object. The default event is document_completed. That is it.
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
End SubYou can also, in the code tab, click on the first box: http://img18.imageshack.us/img18/792/capturenm.png
select the webbrowser object, and in the box beside it, there are a lot of events titles for the webbrowser.
Last edited by fg123 (2010-04-24 20:10:48)
Offline