Results 1 to 3 of 3

Thread: Webbrowser show destination of link in status bar

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2009
    Posts
    8

    Webbrowser show destination of link in status bar

    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

  2. #2
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Webbrowser show destination of link in status bar

    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

  3. #3

    Thread Starter
    New Member
    Join Date
    Mar 2009
    Posts
    8

    Re: Webbrowser show destination of link in status bar

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width