How would I start a tabstrip control on a different tab?? I have 4 tabs, the last one being preferences, if this is the first time that they are using the program then I want them to start out on the preference tab. How do I do this??
Printable View
How would I start a tabstrip control on a different tab?? I have 4 tabs, the last one being preferences, if this is the first time that they are using the program then I want them to start out on the preference tab. How do I do this??
I would recommend using Microsoft Tabbed Dialog Control instead of TabStrip kind of thing. It's easier to deal with.
[Edited by QWERTY on 07-26-2000 at 01:46 PM]Code:SSTab1.Tab = 2
Okay thanks.
But if you want to use TabStrip then use this code to change between tabs:
(sorry it took me a while to figure this out)Code:Private Sub Form_Load()
TabStrip1.Tabs.Item(3).Selected = True
End Sub
That is okay, thanks for the help, I got it working.