Every time I click on a link it opens in Internet Explorer but I want it to open in another window of my web browser.

Details : I have made a tabbed web browser using a tab control because every where else I have looked is just for a normal web browser.

link|improve this question
This should e re-tagged to vb.net – jpinto3912 Feb 19 '09 at 22:19
feedback

1 Answer

You have to hookup the newwindow2 of the (old activex) browser control event like this:

Private Sub AxWebBrowser1_NewWindow2(ByVal sender As Object, ByVal e As AxSHDocVw.DWebBrowserEvents2_NewWindow2Event) Handles AxWebBrowser1.NewWindow2
    Dim frmWB As Form1
    frmWB = New Form1()

    frmWB.AxWebBrowser1.RegisterAsBrowser = True
    e.ppDisp = frmWB.AxWebBrowser1.Application
    frmWB.Visible = True
End Sub

Details can be found here http://support.microsoft.com/?scid=kb%3Ben-us%3B311282&x=8&y=21

link|improve this answer
feedback

Your Answer

 
or
required, but never shown