Hi all,
I am trying trying to make both the "Tab Key" behave as the "Enter" key. keys. In otherwords, both the Tab and Enter should acheive the same objective.
I am using the code below but only the "Enter" key is working, but the "Tab" key is not working.
How can I get this accomplished?
Private Sub Text2_KeyPress(KeyAscii As Integer)
If KeyAscii = 9 Or KeyAscii = 13 Then cmdGo_Click
End Sub
Thanks.
tgifgemini