: To add a browswer to your project , follow these steps
: 1. Hit project on the tab list on your vb controls ( where file and edit is )
:
: 2. Go down to components
:
: 3. look for ' Microsoft internet controls ' and put a tick i the box , hit apply and then ok
:
: 4. you will see a globe icon apear on your vb general control bar , make a browswer on the form you wish to have the browswer on
:
: 5. to make it go to a website when u load the form enter this in form load
:
: WebBrowser1.Navigate "http://www.aol.com"
:
: aol is a example, your link would go there,you could also put that code behind commands buttons for specific links
:
: if you want to add a navigation bar then you could do it simply like this
:
: create a text box and a command button on the form with the browser.
: put behind the button
:
: Private Sub Command1_Click()
: WebBrowser1.Navigate Text1.Text
: End Sub
:
: and whatever url u type in text box 1 it will take your browser to that
:
: hope it helps, if you don't understand it reply and i will go through it again
:
: *************THANKS BUT I CAN'T PROGRAM ANY BUTTONS BUT THE HOME BUTTON WHAT'S THE CODE??THANKS************