Legendary Cookie
01-23-2009, 09:04 AM
Note: This is my first tuturial at DXT.
How to make a WebBrowser for Newbies
Video Tut at here:
http://www.ziddu.com/download/2161003/WebBrowserTut.wmv.html
Text Tuturial
1- Add a Text Box
2- Add a button
3- Add a WebBrowser control
4- Click on the button and put this code:
WebBrowser1.Navigate (TextBox1.Text)
How to make a homepage to your browser ?
RE: Double click on the form and add this code
WebBrowser1.Navigate ("http://www.thewebsiteyouwant.com/")
How to add backward and forward ?
RE:
Backward:
WebBrowser1.GoBack
Forward:
WebBrowser1.GoForward
How to open internet explorer homepage with a button ?
RE:
WebBrowser1.GoHome
How to update textbox with the current website url ?
RE:
Me.TextBox1.Text = WebBrowser1.Url.ToString
Credits: Legendary Cookie (me)
Post comments or bugs that you found.
How to make a WebBrowser for Newbies
Video Tut at here:
http://www.ziddu.com/download/2161003/WebBrowserTut.wmv.html
Text Tuturial
1- Add a Text Box
2- Add a button
3- Add a WebBrowser control
4- Click on the button and put this code:
WebBrowser1.Navigate (TextBox1.Text)
How to make a homepage to your browser ?
RE: Double click on the form and add this code
WebBrowser1.Navigate ("http://www.thewebsiteyouwant.com/")
How to add backward and forward ?
RE:
Backward:
WebBrowser1.GoBack
Forward:
WebBrowser1.GoForward
How to open internet explorer homepage with a button ?
RE:
WebBrowser1.GoHome
How to update textbox with the current website url ?
RE:
Me.TextBox1.Text = WebBrowser1.Url.ToString
Credits: Legendary Cookie (me)
Post comments or bugs that you found.