If I place my mouse over a link in the WebBrowser Control and right click on the page I can select 'Open in new window'
I can prevent this occuring with...
Private Sub WB1_NewWindow2(ppDisp As Object, Cancel As Boolean)
Cancel = True
End Sub
What I am trying to do is obtain the URL that the 'New Window' will navigate to, any ideas anyone?
I can prevent this occuring with...
Private Sub WB1_NewWindow2(ppDisp As Object, Cancel As Boolean)
Cancel = True
End Sub
What I am trying to do is obtain the URL that the 'New Window' will navigate to, any ideas anyone?