Page 1 of 1

Simple WebBrowser Tut

Posted: Thu Mar 31, 2011 11:43 pm
by Jg99
Hello, here is how to make a webbrowser tut for noobs
Ist add 5 buttons
make their text Back, forward, Stop, Refresh, Go
add a textbox
add a webbrowser control

Double click on each button and paste the correct code.
Here is the code
Code: Select all
 
Back
Webbrowser1.GoBack
Forward:
Webbrowser1.GoForward
Refresh:
Webbrowser1.Refresh

Stop:
Webbrowser1.Stop

Go:
Webbrowser1.Navigate(TextBox1.Text)
there you have it, a simple webbrowser

Re: Simple WebBrowser Tut

Posted: Sat Apr 02, 2011 5:18 pm
by XTechVB
Hi Jg99 and Welcome on codenstuff.com. First i want to say that i like the Tutorial very simple and easy to understand for a beginner . you are probably wonder why did no one posted a comment on it? well that's because the tutorial is too simple and almost anyone knows how to make a webbrowser, and there are very few beginners here because here on codenstuff everyone becomes and advanced programmer over night.
Enjoy! cooll;

Re: Simple WebBrowser Tut

Posted: Sat Apr 02, 2011 5:22 pm
by Napster1488
U should make some more Avanced Tutorial like a Tabbed WebBrowser with History,Bookmark Function or something ;)
Maybe i gonna Post such Tutorial,i already created Tabbed Browser with IE Browser and Gecko.

Re: Simple WebBrowser Tut

Posted: Sun Apr 03, 2011 1:07 am
by Jg99
I could do a tut on a tabbed webkit browser (MDi Tab Control)
and more

Re: Simple WebBrowser Tut

Posted: Sun Apr 03, 2011 2:59 am
by Bogoh67
you should explain which each line of code means because i know newbies will be coming round the corner and won't understand anything

Re: Simple WebBrowser Tut

Posted: Sun Apr 03, 2011 4:58 pm
by mandai
Bogoh67 wrote:
you should explain which each line of code means because i know newbies will be coming round the corner and won't understand anything
The meaning is in the function names.

Re: Simple WebBrowser Tut

Posted: Sun Apr 03, 2011 5:01 pm
by Axel
mandai wrote:
Bogoh67 wrote:
you should explain which each line of code means because i know newbies will be coming round the corner and won't understand anything
The meaning is in the function names.
And that code is pretty much understandable if you only understand English

Re: Simple WebBrowser Tut

Posted: Sun Apr 03, 2011 5:41 pm
by Agust1337
There are really many if I remember, many tutorials about how to make a webbrowser here.