Closed Thread
Results 1 to 7 of 7

Thread: does any1 know how to make a web browser in vb.net ?

  1. #1
    MXTECH is offline Learning Programmer
    Join Date
    Jan 2008
    Posts
    46
    Rep Power
    15

    Post does any1 know how to make a web browser in vb.net ?

    does any1 know how to make a little web browser in vb.net ?

    like nothing special just a little form with a website viewing thing then
    a url taskbar and a go button?

    i remember something like this in a previous forum i went to but that didnt work in my visual studio 2008 version.

    thanks peeps

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: does any1 know how to make a web browser in vb.net ?

    Just add a WebBrowser control from the toolbox!

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  4. #3
    Join Date
    Apr 2008
    Posts
    789
    Blog Entries
    5
    Rep Power
    24

    Re: does any1 know how to make a web browser in vb.net ?

    I know (sort of) how to do url lookup in C, and probably could do a basic html displayer, but a web browser is kinda difficult, you need caching, and javascript interpretation..

  5. #4
    Join Date
    Jul 2008
    Posts
    2
    Rep Power
    0

    Re: does any1 know how to make a web browser in vb.net ?

    Yeah, I made one myself. Add a text box, web browser and a button to the form and double click the button. Add
    Code:
    WebBrowser1.Navigate(TextBox1.Text)
    Done

  6. #5
    MXTECH is offline Learning Programmer
    Join Date
    Jan 2008
    Posts
    46
    Rep Power
    15

    Re: does any1 know how to make a web browser in vb.net ?

    Quote Originally Posted by Hunter Studios View Post
    Yeah, I made one myself. Add a text box, web browser and a button to the form and double click the button. Add
    Code:
    WebBrowser1.Navigate(TextBox1.Text)
    Done
    aw dude u are awessome!!! thank you, so simple but yet still eluded me.
    cheers dude

  7. #6
    zsoftwarez is offline Newbie
    Join Date
    Jul 2008
    Posts
    1
    Rep Power
    0

    Talking Re: does any1 know how to make a web browser in vb.net ?

    Quote Originally Posted by Hunter Studios View Post
    Yeah, I made one myself. Add a text box, web browser and a button to the form and double click the button. Add
    Code:
    WebBrowser1.Navigate(TextBox1.Text)
    Done
    yes, of course he must have but don't you think you've got to add at least a "refresh","back","forward" and "stop" button?

    stop-

    Code:
    webbrowser1.stop
    refresh-

    Code:
    webbrowser1.refresh
    back-

    Code:
    webbrowser1.goback
    forward-

    Code:
    webbrowser1.goforward
    (do you also want a home page which you can keep changing and which will load just as the form does?)

  8. #7
    ViRuSS's Avatar
    ViRuSS is offline Learning Programmer
    Join Date
    Aug 2008
    Location
    London, England
    Posts
    77
    Rep Power
    13

    Re: does any1 know how to make a web browser in vb.net ?

    i know how to make a nice web browser but in vb6 in vb.net codes are diffrent so sry
    I didn't write here anything this is Illusion

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How To Make A Text-Based Browser Game?
    By HaX in forum Website Design
    Replies: 6
    Last Post: 08-09-2011, 12:51 AM
  2. how to make a progress bar fro web browser control??
    By amrosama in forum C# Programming
    Replies: 4
    Last Post: 06-15-2010, 06:53 PM
  3. How to make Browser homepage changing programme?
    By theblackcode in forum C and C++
    Replies: 14
    Last Post: 08-04-2009, 07:56 PM
  4. How To Make Easy Web Browser in VB6!
    By ViRuSS in forum Tutorials
    Replies: 41
    Last Post: 09-03-2008, 01:11 PM
  5. Can any1 make an Age of Empires simple program??
    By brent1234 in forum MarketPlace
    Replies: 4
    Last Post: 06-05-2008, 10:39 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts