Code:
 Dim wb As New WebBrowser
        wb.Navigate("http://google.com")
MsgBox(wb.Url.ToString)
Code:
WebBrowser1.Navigate("http://google.com")
MsgBox(WebBrowser1.Url.ToString)
How come the first one does not work? (The message shown is blank)