Re: Help using tabs VS2012
You cannot disable tabs in a TabControl by default. Check this out for some tips on customising a TabControl:
http://dotnetrix.co.uk/tabcontrol.htm
Re: Help using tabs VS2012
Thank you! although I personally think they should implement such functionality in a future patch, I appreciate the help.
Re: Help using tabs VS2012
A simple solution is enable/disable the controls in the tabs
Code:
For j As Integer = 2 To TabControl1.TabCount - 1
For Each ctl As Control In TabControl1.TabPages(j).Controls
ctl.Enabled = False
Next
Next