after i copy the link by this code.
Dim myElement As HtmlElement = browser.Document.ActiveElement
Dim target As String = myElement.GetAttribute("href")
how i can i open new window in a tabbed browser with that link.
i did it in different ways but it not working, and here is one of tries.
Dim browser As wbf = Me.TabControl1.SelectedTab.Tag
Dim myElement As HtmlElement = browser.Document.ActiveElement
Dim target As String = myElement.GetAttribute("href")
Dim nw As New swb
nw.Show()
browser.Navigate(target)
swb=form1 and wbf = class called web browser function