I need to stop users selecting a tab and instead provide buttons on each tabpage so that they can move through the tabs pages in sequence. Is there a way to disable manual selection of the tabs (for instance by clicking on them)?
If you use tabstrip
foreach (var tab in tabStrip.Tabs) { tab.Enabled = false; }
tabStrip.SelectedTab.Enabled = true;