How to persist the tab position when user move the tabs at runtime in WinForms TabControlAdv?
Persist the tab position
You can set the PersistState property to true, it helps to load the last modified tab states (Such as tab Position, Tab Label) of the TabControlAdv.
C#
this.tabControlAdv1.PersistTabState = true;
VB
Me.tabControlAdv1.PersistTabState = True