Visual Basic: Making a More Advanced Web Browser
If you are reading this tutorial, you should already have completed to previous tutorial on a simple web browser.
From your previous browser you should have an address ar in which you can type an address, and press "go", however what about refresh, stop, back forwards and all of those buttons?, well we will introduce them now...
For the home button drag a button onto the form, and in its "on click" code, type:
webBrowser.GoHome()
This is a list of the rest of the buttons names and scripts:
- Back:
webBrowser1.GoBack()
- Forward:
webBrowser1.GoForward()
- Refresh:
webBrowser1.Refresh()
- Stop:
webBrowser1.Stop()
You now have a web browser with all of the web browser buttons.
Back to Visual Basic

