What function can I use to detect the url of a webbrowser in my form.
Printable View
What function can I use to detect the url of a webbrowser in my form.
Do you mean, determine what the URL the mouse is over in a Webbrowser control?
Code:Private Sub webbrowser1_StatusTextChange(ByVal Text As String)
Caption = Text
End Sub
sorry for not clarifing it. I want to know how to find out what is the url of a webbrowser(at the time of a timer event)?
Sorry once again, but I don't quite understand what you mean. You want to get the url when a page is complete?
Either in the DocumentComplete, DownloadComplete, or NavigateComplete2, put this:
Code:Caption = "Download Complete"