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.
Printable View
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.
This is the code I use and it works:
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=1Code:Private Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
Dim F As New Form1
Set ppDisp = F.WebBrowser1.object
F.Show
End Sub
Hope that helps.