Ive seen some discussion on here about how to hide tabs in a tabcontrol but they all seem to be in C or some variant. I havent seen one for vb.net (i cant do C)
What
You just add and remove TabPages from the TabControl through the TabPages collection:
TabPages
TabControl1.TabPages.Add(myTabPage)
and to remove it:
TabControl1.TabPages.Remove(myTabPage)
Note: Removing a TabPage does not dispose it, it just removes it from the TabPage collection.
TabPage