Public Class BrowserSeparate ' The Panel1 object has its .Dock property set to Fill, and ' the WebBrowser1 control is placed within it, ' with the same .Dock property value. Private Sub WebBrowser1_Navigated(ByVal sender As Object, _ ByVal e As _ System.Windows.Forms.WebBrowserNavigatedEventArgs) _ Handles WebBrowser1.Navigated Me.Text = WebBrowser1.DocumentTitle End Sub YOU MIGHT WANT TO HAVE A FEW EXTRAS, like a btnBack and btnForward, but it is not required... End Class