Results 1 to 3 of 3

Thread: Tab Strips

  1. #1

    Thread Starter
    Member
    Join Date
    May 2002
    Posts
    44

    Tab Strips

    I was wondering how I would be able to program the different tabs on a tab strip. what is the code required, or how program it. Also how would I be able to program pictures into the Tabs of the Tab strip

  2. #2
    vbGrandpa
    Guest
    Try this


    Private Sub Form_Load()

    Dim x As Object
    Dim TabName As String
    Dim I As Integer
    Dim TextLine As String
    Dim LookUpName As String

    'Load tabs with "A"-"Z".

    For I = 65 To 90
    TabName = Chr(I) & "tab"
    Set x = TabStrip1.Tabs.Add(I - 64, TabName, Chr(I))
    Next

    end sub

  3. #3

    Thread Starter
    Member
    Join Date
    May 2002
    Posts
    44
    I know hjow to create those kind of tabs, I was just wondering how I Would be able to program these tabs to display information or pictures of some sort

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