Support Forums
[TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19)
+---- Thread: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] (/showthread.php?tid=13603)

Pages: 1 2 3 4 5 6 7 8 9 10


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - AceInfinity - 12-26-2010

In the first part you have the Refresh button labeled as "Home" This is very different from "Refresh".

For the home code I just made it navigate to the string url I defined.

You can use
Code:
WebBrowser1.Navigate("www.google.com")

Or input whatever you want your homepage to be within that string value.

Also you can go into the Web Browser event properties, and choose a default Url to load when you load the form.


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - echo.phyber - 12-26-2010

Very nice and basic tutorial mate.
Keep it up!


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - AceInfinity - 12-26-2010

I'm using my custom web browser to view this thread right now lol. I used to know how to add lots of things, until I upgraded to VB2010. Now I need to figure out how to clear browser cookies and all of that again. I'm working on a tabbed web browser too.


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - w00pz - 01-08-2011

Great tut ;)
Easy to understand!
Very good tutorial for noobs Smile


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - Statics - 01-11-2011

Thank you for all the positive comments, I appreciate it.


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - Mr Kitty Cat - 03-29-2011

Nice tutorial 10/10
Thanks mate


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - h4yr0 - 03-29-2011

very detailed tutorial and good for posting images too, but it's for beginners Tongue


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - AceInfinity - 03-29-2011

(03-29-2011, 09:14 AM)h4yr0 Wrote: very detailed tutorial and good for posting images too, but it's for beginners Tongue

True, this is very basic. When you're comfortable with this bit of code, you can move onto adding a history and bookmarks as well. You can even make it a tabbed web browser by using the tab control.


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - Statics - 03-29-2011

Updated with the code of the progress bar. Sorry guys.


RE: [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] - The Unknown™ - 04-01-2011

Great tut man, really useful, thanks a lot for sharing it with us !