tabcontrol w/o tabs
is there anything like a tabcontrol w/o tabs?
they're easy on the designer vs many panels
but I want to programmically call the pages/ not the user.
[161 byte] By [
FoodBard] at [2007-11-19 10:01:14]

# 1 Re: tabcontrol w/o tabs
I don't think you can do it with the VS TabControl, so you will have to make your own...or look here...TabControl ( http://www.codeproject.com/cs/miscctrl/magictabcontrol.asp)
Norfy at 2007-11-9 1:48:47 >

# 2 Re: tabcontrol w/o tabs
One idea is to create the tabcontrol with tabpages in the designer, then programatically remove the tabs in the form constructor but save references to them, then add desired tab page programatically. It will still appear as a single tab to the user though.