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
Printable View
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
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
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