Pop-up Windows
In the NewWindowRequested event, you can create your own browser to be used as a popup or tab. If you don't respond to this event, a popup or tab will be created.
If you are using the CSTabstrip control, new tabs are created automatically, but they can be overridden.
Create a new popup window
Create a new form and browser, and return the browser in the event arguments.
Private Sub DomView_NewWindowRequested(Sender As DOMView, Url As String, ByRef NewDomView As DOMView) Handles DomView.NewWindowRequested
Dim Frm As New PopupFrm
Frm.Bounds = e.Rect
e.Browser = Frm.DomView
Frm.Show()
End Sub