+ Reply to Thread
Page 1 of 5 123 ... LastLast
Results 1 to 10 of 42

Thread: How To Make Easy Web Browser in VB6!

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

    How To Make Easy Web Browser in VB6!

    Im going to show you how to make an easy Web Browser in Visual Basic 6

    Basically what you will need is:

    4 CommandButtons change their caption to Go, Back, Forward and Refresh
    and name them cmdGo, cmdBack, cmdForward and cmdRefresh,



    Then make one textbox ( You need it to type the URL )



    And then make one WebBrowser if you cant find it right click on left toolbar click components


    And find Microsoft Internet Controls, click on it and click ok




    Then on the left toolbar new icon will appear add it to the project make it big.



    And the last bit. The code:
    Code:
    Private Sub cmdgo_Click()
    WebBrowser1.Navigate (Text1.Text)
    End Sub
    Private Sub cmdback_Click()
    WebBrowser1.GoBack
    End Sub
    Private Sub Cmdforward_Click()
    WebBrowser1.GoForward
    End Sub
    Private Sub cmdrefresh_Click()
    WebBrowser1.Refresh
    End Sub
    Private Sub Form_Load()
    WebBrowser1.Navigate ("http://www.google.com")
    End Sub
    Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
    Text1.Text = (WebBrowser1.LocationURL)
    Form1.Caption = (WebBrowser1.LocationName)
    End Sub

    Thats the code.
    Ummm. You can customize your own like put images and change the text, font....

    And dont forget to save it as .EXE

    Thats it your done you have your own Web Browser!

    If you liked it +rep me
    Last edited by ViRuSS; 09-01-2008 at 05:20 AM.

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #2
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: How To Make Easy Web Browser in VB6!

    Perhaps you could have used code tags to make it look neater, and used some screenshots to show where to find the different controls, and how to find the web browser component.

    Nice though

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

    Re: How To Make Easy Web Browser in VB6!

    i wos kinda in a hurry but
    ill make better one later

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

    Re: How To Make Easy Web Browser in VB6!

    Please use CODE tags. +rep

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

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

    Re: How To Make Easy Web Browser in VB6!

    Quote Originally Posted by chili5 View Post
    Perhaps you could have used code tags to make it look neater, and used some screenshots to show where to find the different controls, and how to find the web browser component.

    Is it better Now? If it is +rep me
    I didn't write here anything this is Illusion

  7. #6
    Jordan Guest

    Re: How To Make Easy Web Browser in VB6!

    Not bad, a little short. +rep.

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

    Re: How To Make Easy Web Browser in VB6!

    thx it is little short but you can make it in 2 min's
    I didn't write here anything this is Illusion

  9. #8
    Jordan Guest

    Re: How To Make Easy Web Browser in VB6!

    What are you going to do with that empty blog? Can you unpublish it if you are not going to use it?

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

    Re: How To Make Easy Web Browser in VB6!

    yeah i will lol that blog was mistake i wanted to make new threat but i make new blog
    and i forgot to delete it
    I didn't write here anything this is Illusion

  11. #10
    Jordan Guest

    Re: How To Make Easy Web Browser in VB6!

    No problem. I got a bit excited because I thought we had a new blogger, but alas, we don't . If you change your mind, feel free to blog!

+ Reply to Thread
Page 1 of 5 123 ... LastLast

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. Replies: 3
    Last Post: 07-22-2011, 11:42 AM
  3. 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
  4. How to make Browser homepage changing programme?
    By theblackcode in forum C and C++
    Replies: 14
    Last Post: 08-04-2009, 07:56 PM
  5. does any1 know how to make a web browser in vb.net ?
    By MXTECH in forum Visual Basic Programming
    Replies: 6
    Last Post: 09-01-2008, 07:20 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