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

Please help with web Browser
galaxy_nus
Preposterous
throne
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
private void axWebBrowser1_StatusTextChange(object sender, AxSHDocVw.DWebBrowserEvents2_StatusTextChangeEvent e)
{
this.label1.Text = e.text.ToString();
}