Hi welcome to my tutorial.
This is a tutorial for beginners.
I will teach you how to make a very simple Web browser.
This tutorial is for windows forms.
--------------------------------------------------------
The idea for Home is by me ( Hlinzi )
Start off by designing you're Web Browser.
What you need is
- 2 Text Boxes ( 1 For Go (Gotextbox) 1 For Home (Hometextbox) )
- 6 Buttons ( Go, Home, Forward, Back, Stop, Refresh )
- 1 Webbrowser ( Webbrowser1 )
- 1 Status Strip
- 1 StatusStrip Label
- 1 StatusStrip Progress Bar
Okay.
When you've put you're buttons together, double click Go button and write in this code:
Code:
Webbrowser1.Navigate(Gotextbox.text)
Then go back to design and double click Home, Now write in this code:
Code:
Webbrowser1.Navigate(Hometextbox.text)
Do this over again, here are the codes for the buttons:
---------
Forward:
Code:
Webbrowser1.GoForward
---------
Back:
---------
Stop:
---------
Refresh:
Code:
Webbrowser1.Refresh
---------
StatusStrip Label & Progress Bar
For this you need to double click the WebBrowser and change the Declaration to ProgressChanged.
Code:
ToolStripProgressBar1.Maximum = e.MaximumProgress
ToolStripProgressBar1.Value = e.CurrentProgress
ToolStripStatusLabel1.Text = "Progress: " & e.CurrentProgress
---------
Thank you for reading my tutorial
If this helped you, Please rate 
This is my Biggest Post So Far!