With RadTabStrip it is easy to add, remove or disable tabs at runtime.
This example shows how to add, remove or disable a tab upon a button click.
[C#]
//Add Tab to the Tabs Collection
RadTab childTab = new RadTab();
RadTabStrip1.InnermostSelectedTab.Tabs.Add(childTab);
//Removes Tab from the Tabs Collection
RadTab currentTab = RadTabStrip2.InnermostSelectedTab;
IRadTabContainer owner = currentTab.Owner;
owner.Tabs.Remove(currentTab);
//Disables Tab
RadTabStrip3.InnermostSelectedTab.Enabled = false;
[VB]
'Add Tab to the Tabs Collection
Dim childTab As New RadTab()
RadTabStrip1.InnermostSelectedTab.Tabs.Add(childTab)
'Removes Tab from the Tabs Collection
Dim currentTab As RadTab = RadTabStrip2.InnermostSelectedTab
Dim owner As IRadTabContainer = currentTab.Owner
owner.Tabs.Remove(currentTab)
'Disables Tab
RadTabStrip3.InnermostSelectedTab.Enabled = False