|
-
Jun 24th, 2000, 11:03 PM
#1
Thread Starter
New Member
excuse me! I have tried as what Matthew Gates said .but why new form can't navigate Hyperlink? It's only a new form without any content.
-
Jun 25th, 2000, 02:15 AM
#2
This is the code I use and it works:
Code:
Private Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
Dim F As New Form1
Set ppDisp = F.WebBrowser1.object
F.Show
End Sub
If you need help making a webbrowser, someone posted a really good webbrowser source code on http://www.planet-source-code.com. Here is the link to the webbrowser: http://www.planet-source-code.com/vb...=9195&lngWId=1
Hope that helps.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|