Results 1 to 5 of 5

Thread: How do I

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    85

    Question

    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??
    Using VB6 Still Pluging away

  2. #2
    Fanatic Member
    Join Date
    Oct 1999
    Location
    MA, USA
    Posts
    523
    I would recommend using Microsoft Tabbed Dialog Control instead of TabStrip kind of thing. It's easier to deal with.
    Code:
        SSTab1.Tab = 2
    [Edited by QWERTY on 07-26-2000 at 01:46 PM]

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    85
    Okay thanks.
    Using VB6 Still Pluging away

  4. #4
    Fanatic Member
    Join Date
    Oct 1999
    Location
    MA, USA
    Posts
    523
    But if you want to use TabStrip then use this code to change between tabs:
    Code:
    Private Sub Form_Load()
        TabStrip1.Tabs.Item(3).Selected = True
    End Sub
    (sorry it took me a while to figure this out)

  5. #5

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    85

    Cool

    That is okay, thanks for the help, I got it working.
    Using VB6 Still Pluging away

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width