I would also like to know if there is anyone out there who knows how to toggle through the textboxes using Tab and Shift+Tab.
It's always better to ask stupid questions; stupid questions have been known to reduce the frequency of stupid mistakes. )
Code:
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
'If KeyCode = vbKeyTab Then TextBox2.Activate
If KeyCode = vbKeyUp Then TextBox3.Activate
If KeyCode = vbKeyDown Then TextBox2.Activate
End Sub
Private Sub TextBox2_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
'If KeyCode = vbKeyTab Then TextBox3.Activate
If KeyCode = vbKeyUp Then TextBox1.Activate
If KeyCode = vbKeyDown Then TextBox3.Activate
End Sub
Private Sub TextBox3_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
'If KeyCode = vbKeyTab Then TextBox1.Activate
If KeyCode = vbKeyUp Then TextBox2.Activate
If KeyCode = vbKeyDown Then TextBox1.Activate
End Sub
It's always better to ask stupid questions; stupid questions have been known to reduce the frequency of stupid mistakes. )