Trybotics Logo

Make a Web Browser in Visual Basic

DESCRIPTION

Im going to teach you how to make a web browser in Visual Basic 2005.

Description:

Open Visual Basic and start a new Windows Application.

Description:

Add a:

Text Box
Web Browser
5 Buttons

in that order.

Description:

Arrange them like this and rename them like I did.

Description:

Double click on the form and type in:
Me.Text = "Web Browser"
like this:

Description:

double click on the Go button and type in:
WebBrowser1.Navigate(TextBox1.Text)

Description:

Click (actually double click) on the back button and type in:
WebBrowser1.GoBack()
like this

Description:

Forward Button Code
2 More Images

Double click on the forward button and type in:
WebBrowser1.GoForward()
like this

Description:

double click on the refresh button and type in:
WebBrowser1.Refresh()
like this

Description:

Double click on the home button and type:
WebBrowser1.GoHome()
like this

Description:

Click on the Debug button

Description:

Click on build
then click on publish and keep clicking next
like these three pictures Im putting up

Description:

you've finally created a web browser! now give yourself a hand and go sell it online or something.


YOU MIGHT ALSO LIKE