You know how when you drag over a link in IE and it tells you the webpage on the status bar. Well I was wondering how I could get a label to do that?
Printable View
You know how when you drag over a link in IE and it tells you the webpage on the status bar. Well I was wondering how I could get a label to do that?
Code:Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
StatusBar1.SimpleText = "http://www.vb-world.net"
End Sub
Not quite exactly what I need. I need one for the Webbrowser control, when you view page in there, label1 should say in its status bar the full link, "http://www.vb-world.net"