Autoload a page in VB

In Visual Basic how can I make a program automatically load a website on load and not have anything except that website display? All I want is the page to load automatically when you run the program..

Can anyone tell me what I need to do to have this work?

Also, can anyone tell me how to put images into a Visual Basic program?

Thanks in advance

Edit: All right, I know this much:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

WebBrowser1.Navigate()

End Sub

I just have no idea what to put in the parenthesis. Usually you would put something like TextBox1.Text, but I don't want any textboxes in mine or anything.. This is driving me insane, someone please gimme a hand :P

#457118

this is easy :D... if you want it to open IE then do this

Form1_Load()

shell( "path to ie.exe ," & strURL

End Sub

if you want to use the ie control

Form1_Load

web.navigate ";http://yoursite.com"

end sub

#463828

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

WebBrowser1.Navigate("http://www.aqua-soft.org")

End Sub

Fire up MSDN to see the other parameters.

hth,

herd

#463907