Please help with web Browser

I need help with my status strip. I have made my progress bar work correctly and it displays "done" when it is done, but i need help;

In IE, when you move you mouse over a link, it displays the url for that link in the status strip thing. I would like someone to please give me the code for that in VB 2005

thank you



Answer this question

Please help with web Browser

  • galaxy_nus

    Have you tried adding StatusTextChange event using the VS2005 IDE

  • Preposterous

    that didn't help im sorry but that just made a bunch of errors. then i tried to modify it and it still won't work
  • throne

    i really need help so PLEASE HELP
  • AzureBell

    um... no i have no idea what that is im new to Visual Basic 2005

    by the way im using the editor Microsoft Visual Basic Express Edition 2005


  • DivByZ

    Use the StatusTextChange event.



    private void axWebBrowser1_StatusTextChange(object sender, AxSHDocVw.DWebBrowserEvents2_StatusTextChangeEvent e)
    {
    this.label1.Text = e.text.ToString();
    }

  • Please help with web Browser