K
~KO
Hello, I am new to Excel form development and this is the code I have set for
44 texboxes to advance through the boxes. However, this does not scroll down
the page. I am tabbing to the correct box but cannot see it!
Private Sub TextBox1_KeyDown(ByVal _
KeyCode As MSForms.ReturnInteger, _
ByVal Shift As Integer)
If KeyCode = 9 Then TextBox2Activate
End Sub
Private Sub TextBox2_KeyDown(ByVal _
KeyCode As MSForms.ReturnInteger, _
ByVal Shift As Integer)
If KeyCode = 9 Then TextBox3.Activate
End Sub
44 texboxes to advance through the boxes. However, this does not scroll down
the page. I am tabbing to the correct box but cannot see it!
Private Sub TextBox1_KeyDown(ByVal _
KeyCode As MSForms.ReturnInteger, _
ByVal Shift As Integer)
If KeyCode = 9 Then TextBox2Activate
End Sub
Private Sub TextBox2_KeyDown(ByVal _
KeyCode As MSForms.ReturnInteger, _
ByVal Shift As Integer)
If KeyCode = 9 Then TextBox3.Activate
End Sub