it's not a button but a pseudo tab... just add a tab with "+" as the caption... then when that tab is activated, add a new tab, insert it at the right spot, then activate it.
thank for the answer , but this code is for (add tab)
where can i but it Dim Browser As New WebBrowser
TabControl1.TabPages.Add("new page")
TabControl1.SelectTab(int)
Browser.Name = "Web Browser"
Browser.Dock = DockStyle.Fill
TabControl1.SelectedTab.Controls.Add(Browser)
AddHandler Browser.ProgressChanged, AddressOf loading
AddHandler Browser.DocumentCompleted, AddressOf Done
int = int + 1
in the event that fires when the tab is selected... it's going to take a little more effort though, as you're only going to want it to run when the tab has a caption of "+" ... otherwise it could end up in an endless loop as soon as you run TabControl1.SelectTab(int)