| You are here: DEVPPL ‹ Forum ‹ Programming ‹ Visual Basic Forum |
NOTIFICATIONS
|
|
|||||||||||||||
Login |
Hello All
3 posts
• Page 1 of 1
0
Hello All
I am currently programming my own web browser using VB6. Here's the setup:
I have a toolbar with the home, forward, back, etc.
I do NOT have an address text box because we need to control where people go
The one thing that I'm having problems with is the starting page when the browser is launched. I have brwWebBrowser.Navigate ('url") but it doesn't show anything.
Secondly, I was wondering where i could get some good icons for the home, back, forward buttons. Thanks!
I have a toolbar with the home, forward, back, etc.
I do NOT have an address text box because we need to control where people go
The one thing that I'm having problems with is the starting page when the browser is launched. I have brwWebBrowser.Navigate ('url") but it doesn't show anything.
Secondly, I was wondering where i could get some good icons for the home, back, forward buttons. Thanks!
- TUnit
- Reputation: 0
- Posts: 40
- Joined: Wed Dec 08, 2004 5:26 pm
- Location: South Dakota
- Highscores: 0
- Arcade winning challenges: 0
0
quite simple actually
Private Sub Form_Load()
StartingAddress = "http://www.google.com"
brwWebBrowser.Navigate StartingAddress
End Sub
there ya go. as for the buttons, might as well make them your self.
Private Sub Form_Load()
StartingAddress = "http://www.google.com"
brwWebBrowser.Navigate StartingAddress
End Sub
there ya go. as for the buttons, might as well make them your self.
- Dragul
- Reputation: 0
- Posts: 16
- Joined: Wed Apr 20, 2005 8:54 pm
- Location: Abergavenny, Wales, UK
- Highscores: 0
- Arcade winning challenges: 0
0
sorry, missed a bit out it should be:
Private Sub Form_Load()
Dim StartingAddress as String
StartingAddress = "http://www.google.com"
brwWebBrowser.Navigate StartingAddress
End Sub
Private Sub Form_Load()
Dim StartingAddress as String
StartingAddress = "http://www.google.com"
brwWebBrowser.Navigate StartingAddress
End Sub
- Dragul
- Reputation: 0
- Posts: 16
- Joined: Wed Apr 20, 2005 8:54 pm
- Location: Abergavenny, Wales, UK
- Highscores: 0
- Arcade winning challenges: 0
|
|