Use
Tabcontrolobj.TabPages.Insert(0,New TabPage());
This will insert your new tabpage on the first page.
Tabpage is not derived from
ICloneable
, so there is no Clone method. You need to copy each control into the new tabpage. Just loop throught this.Controls to find each control and copy each properties of those controls individually...
I think this is what you need, right?:thumbsup: