Hi, I suppose you coud use a forloop and loop through all the tabpages to find the correct one and then your remove will work, cause you have to pass the page to remove.
Example:
private TabPage getTabPage(string name)
{
foreach (TabPage tp in tabControl.TabPages)
{
if (tp.Name == name)
{
return tp;
}
}
}
Hope this was what you were looking 4.
Alex