G
Guest
I have 2 combo boxes, [ArmrestID] and [CupholderID]
I have the following Code:
Private Sub ArmrestID_LostFocus()
Select Case Me.[Arm Rest ID]
Case "Cupholder"
Me.CupholderID.Visible = True
Case Else
Me.CupholderID.Visible = False
End Select
End Sub
Now if I pick "Cuphoder" from [ArmrestID] then it makes [CupholderID]
visible, and I have it as the next tab stop.
The problem is that even though it unhides [CupholderID], it skips that in
my tab stop and goes right to the next one.
How do I make it go to [CupholderID] if "Cupholder" is chosen in [ArmrestID]
Thanks in Advance
Travis
I have the following Code:
Private Sub ArmrestID_LostFocus()
Select Case Me.[Arm Rest ID]
Case "Cupholder"
Me.CupholderID.Visible = True
Case Else
Me.CupholderID.Visible = False
End Select
End Sub
Now if I pick "Cuphoder" from [ArmrestID] then it makes [CupholderID]
visible, and I have it as the next tab stop.
The problem is that even though it unhides [CupholderID], it skips that in
my tab stop and goes right to the next one.
How do I make it go to [CupholderID] if "Cupholder" is chosen in [ArmrestID]
Thanks in Advance
Travis