OK, on the SSTab..... Is there a way to delete tabs 4 and 7 of a 7-tab SSTab? TYVM, L
A balanced diet is a cookie in each hand.
I already tried deleting the controls in the tab and reseting all the properties, etc. There's GOT to be a way!!!!
I used this in the form load event: Code: SSTab1.TabVisible(4) = False SSTab1.TabVisible(6) = False That made them disappear but now it LOOKS funny! The control is still as wide as it was but the 4 tabs across the top don't go all the way to the right-hand side! I'll keep searching! L
SSTab1.TabVisible(4) = False SSTab1.TabVisible(6) = False
SOLVED! I did the above and then set the TabsPerRow to 5 and now it WORKS! So, to recap: Set the TabVisible property to false for the tab you want to delete (in the form load event) and then set the TabsPerRow property to whatever's left. It is MUCH easier to work on the form if you set the TabsPerRow property at runtime! SO, in a 7-tab SStab where you want to delete #4 and #7, do this: Code: SSTab1.TabVisible(4) = False SSTab1.TabVisible(6) = False SSTab1.TabsPerRow = 5 Seems like MS would fix this little boo-boo, doesn't it? L
SSTab1.TabVisible(4) = False SSTab1.TabVisible(6) = False SSTab1.TabsPerRow = 5
Last edited by Laurel; 02-08-2005 at 12:11 PM.
Forum Rules
Development Centers -- Android Development Center -- Cloud Development Project Center -- HTML5 Development Center -- Windows Mobile Development Center