Page 1 of 1

Open link in new tab source

Posted: Wed Aug 25, 2010 5:18 pm
by Aragornn46
Ok i hate this code,i searched for it over a month,found some codes but i get errors.If is someone that knows the code,please make a source with it. devil;

Re: Open link in new tab source

Posted: Wed Aug 25, 2010 6:30 pm
by Axel
what do you mean exactly

Re: Open link in new tab source

Posted: Wed Aug 25, 2010 8:37 pm
by Aragornn46
lol...what code can it be? a webbrowser code...

Re: Open link in new tab source

Posted: Wed Aug 25, 2010 9:22 pm
by Codex
u can check CnS browser if it has because its an open source

Re: Open link in new tab source

Posted: Sun Aug 29, 2010 11:20 pm
by Agust1337
This has been posted here already but here are the codes

Click on your webbrowser -> click the lightning -> double click NewWindow:
Private sub webbrowser1_NewWindow and so on...
Code: Select all
Dim newtab As TabPage
        Dim webb As New WebBrowser
        e.Cancel = True
        newtab.Text = "Untitled"
        webb.Dock = DockStyle.Fill
        webb.Url = New Uri(Me.wb.Url.AbsoluteUri)
        newtab.Controls.Add(webb)
        Me.wb = webb
        Me.tabcontrol1.Controls.Add(newtab)
there..
topic:
viewtopic.php?f=32&t=1597&start=10