Dec 27, 2000 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 How can I get the Tab key to trigger the KeyDown/ KeyUp events?
Dec 27, 2000 #2 dsi Programmer Joined Mar 13, 2000 Messages 964 Location US You can add something like this to your form: Code: Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = vbKeyTab Then 'Call the KeyDown/KeyUp procedures End If End Sub Upvote 0 Downvote
You can add something like this to your form: Code: Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = vbKeyTab Then 'Call the KeyDown/KeyUp procedures End If End Sub