Can you do a list box than when you say,
press "1" It goes to the form one and in the next colum, when you press "2" is brings you to the form two, so on and so worth :ehh:
Printable View
Can you do a list box than when you say,
press "1" It goes to the form one and in the next colum, when you press "2" is brings you to the form two, so on and so worth :ehh:
Do you mean something like this?
VB Code:
Private Sub List1_Click() Select Case (List1.List(List1.ListIndex)) Case "1": Form1.Show Exit Sub Case "2": Form2.Show Exit Sub '... '... '... End Select If List1.ListIndex < List1.ListCount - 1 Then List1.ListIndex = List1.ListIndex + 1 End Sub
Thanks gavio. ;)