i have started coding a web browser in vb but i can not work out how to show the full url. at the moment it only shows the index such as www.myspace.com
i want it to show the rest of the url such as www.myspace.com/search
any idea
i have started coding a web browser in vb but i can not work out how to show the full url. at the moment it only shows the index such as www.myspace.com
i want it to show the rest of the url such as www.myspace.com/search
any idea
please show your code so we can help you
[Jasme Library (Javascript Motion Effects)] My Site
/\/\@§†ê® §©®¡þ† /\/\@|{ê®
There are 10 kinds of people in the world, those that understand binary and those that don't.
its really basic at the moment am buliding it up
private Sub cbourl_Change()
If KeyCode = vbKeyReturn Then
Wweb.Navigate cbourl.Text
End If
End Sub
Private Sub cmdback_Click()
Wweb.GoBack
End Sub
Private Sub cmdforward_Click()
Wweb.GoForward
End Sub
Private Sub Cmdgoogle_Click()
Wweb.Navigate "www.google.co.uk"
End Sub
Private Sub cmdhome_Click()
Wweb.GoHome
End Sub
Private Sub cmdgosearch_Click()
Wweb.Navigate cbourl.Text
End Sub
Private Sub cmdrefresh_Click()
Wweb.Refresh
End Sub
Private Sub cmdstop_Click()
Wweb.Stop
End Sub
Private Sub Form_Load()
Wweb.Navigate "www.msn.com"
End Sub
take it no one want to help lol
You Have To Update the text every time a link is clicked. TryAlso, what version are you using?Code:Private Sub Wweb_Navigate() cbourl.Text=Wweb.url End Sub
[Jasme Library (Javascript Motion Effects)] My Site
/\/\@§†ê® §©®¡þ† /\/\@|{ê®
There are 10 kinds of people in the world, those that understand binary and those that don't.
Bookmarks