Simple WebBrowser 03-20-2013, 10:33 PM
#1
Tutorial By Ascension
Welcome at another tutorial made by Ascension.
In this tutorial i'm going to teach/learn you guys:
How to make a SIMPLE webbrowser.
Okay, let's start.
First, add 5 buttons called:
Back
Forward
Refresh
Go
Home
Add a textbox too between Refresh and Go.
And a webbrowser ofcourse haha.
It should be looking like this, or you got a other design. Whatever:
![[Image: 3u4nYWy.png]](http://i.imgur.com/3u4nYWy.png)
If you want a homepage.
1 Click on the webbrowser, scroll down and search for URL.
Then type the homepage you want.
My homepage is: http://www.google.com
It's right here:
![[Image: xN4gJFE.png]](http://i.imgur.com/xN4gJFE.png)
Now the coding part:
Double click on the button called 'Back' and enter the code:
Code:
webbrowser1.GoBack()
Double click on the button called 'Forward' and enter the code:
Code:
webbrowser1.Forward()
Double click on the button called 'Refresh' and enter the code:
Code:
webbrowser1.Refresh()
Double click on the button called 'Back' and enter the code:
Code:
webbrowser1.GoBack()
Double click on the button called 'Go' and enter the code:
Code:
webbrowser1.Navigate(textbox1.Text)
And the last button.
Double click on the button called 'Home' and enter the code:
Code:
webbrowser1.Navigate("your homepage")
After you coded the browser, debug it.
And tadaaaaa you just made your own webbrowser!
Tutorial made by Ascension
All credits to me
![Biggrin Biggrin](https://sinister.ly/images/smilies/set/biggrin.png)
Thanks for following this tutorial, have a nice day!