I put tabstip on my vb projet but im not able to edit each..
Im just able to edit the first tab but not the others..
What should i do to edit each please???:confused:
Printable View
I put tabstip on my vb projet but im not able to edit each..
Im just able to edit the first tab but not the others..
What should i do to edit each please???:confused:
Try this:
Code:Private Sub TabStrip1_Click()
With TabStrip1
If .SelectedItem.Index = 1 Then MsgBox "Tab1 selected"
If .SelectedItem.Index = 2 Then MsgBox "Tab2 selected"
End With
End Sub
(?) You are unable to edit each tab?
I assume that you right clicked on the tab to pull up the edit control? (Right Click >> Properties)
Then click on the tab you wish to edit.
Guess I misunderstood. Thought he didn't know how to switch tabs :rolleyes:.
I misunderstand more than usual!
:p