This example illustrates how to call an external web page from a VB.NET application.
Dim webAddress As String = "http://www.example.com/" Process.Start(webAddress)
This example illustrates how to load a webpage from within visual basic form. After adding the WebBrowser control to your form, simply add the following code.
Webbrowser1.Navigate "www.vbforums.com"