move to another text box with the help of arrow key
move to another text box with the help of arrow key
Rate move to another text box with the help of arrow key
(1(1 Vote))
' this code will allow to move to next text box with _
help of Down arrow key and will allow you to move to _
above text box with the help of Up arrow key
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 40 Then
SendKeys "{TAB}+"
ElseIf KeyCode = 38 Then
SendKeys "+{TAB}"
End If
End Sub
move to another text box with the help of arrow key Comments
No comments yet — be the first to post one!
Post a Comment