|
-
May 15th, 2002, 01:10 PM
#1
Thread Starter
Member
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
-
May 15th, 2002, 01:13 PM
#2
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
-
May 15th, 2002, 01:16 PM
#3
Thread Starter
Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|