Hey i Need heplp so far i've got a window with back, forward, refresh, stop and a url box and go with a webbroswer below i would like ot be able to get this to work heres the code below so far.
[code]
Public
Class H2FWebBrowser Private Sub cmdGo_Click()wb.Navigate(txtURL.Text)
'make the webbrowser navigate to whatever is in txtURL End Sub Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles wb.DocumentCompleted End Sub Private Sub cmdGo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdGo.Click End Sub Private Sub cmdStop_Click()wb.Stop()
End Sub Private Sub cmdRefresh_Click()wb.Refresh()
End Sub Private Sub cmdForward_Click()wb.GoForward()
End Sub Private Sub cmdBack_Click()wb.GoBack()
End SubEnd
Class[/code]
And i would love to be able to have favourites, and open new windows or tabs in the same window. and be able to have a help menu on there just that i'm a complete noob to this kind of thing so can anyone help me please. thanks.

How Can i Make my Own web borswer
Kris Nye
The navigate method does work as long as it is a valid url:
http://msdn2.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx
The WebBrowser control cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
The WebBrowser control has several properties, methods, and events related to navigation. The following members let you navigate the control to a specific URL, move backward and forward through the navigation history list, and load the home page and search page of the current user:
Url
Navigate
GoBack
GoForward
GoHome
GoSearch
If the navigation is unsuccessful, a page indicating the problem is displayed. Navigation with any of these members causes the Navigating, Navigated, and DocumentCompleted events to occur at different stages of navigation.</>
Ogulcank
Dottj
Nuno_Salvado
Angelo_f
dlcollison