Måste jag hålla på så här för att skifta mellan olika tabbar?
Private Sub TabStrip1_Click()
If TabStrip1.SelectedItem = "Projekt" Then
Frame1.Visible = True
Frame2.Visible = False
Frame3.Visible = False
Text1.Visible = True
Text2.Visible = True
Text3.Visible = False
Text4.Visible = True
ElseIf TabStrip1.SelectedItem = "Timer" Then
Frame1.Visible = False
Frame2.Visible = True
Frame3.Visible = False
Text1.Visible = True
Text2.Visible = True
Text3.Visible = False
Text4.Visible = True
Else
Frame1.Visible = False
Frame2.Visible = False
Frame3.Visible = True
Text1.Visible = True
Text2.Visible = False
Text3.Visible = False
Text4.Visible = False
Text5.Visible = True
Text6.Visible = True
Text7.Visible = False
Text8.Visible = True
End If
End Sub