Hi I am trying to work out how to make an application with a web browser show the destination of a link in the status bar when the mouse hovers over it
in the same way as internet explorer does does anyone have any advice?
many thx
Printable View
Hi I am trying to work out how to make an application with a web browser show the destination of a link in the status bar when the mouse hovers over it
in the same way as internet explorer does does anyone have any advice?
many thx
The status text will get you that. There is an event that fires on the webbrowser to let you know when the status text changes:
Code:Private Sub WebBrowser1_StatusTextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles WebBrowser1.StatusTextChanged
TextBox1.Text = WebBrowser1.StatusText
End Sub
Thanks alot sometimes they're staring you straight in the face but if you've sat at a PC for 10 hours you still can't see lol
thx