How can I make the Enter button to act like tab?
Printable View
How can I make the Enter button to act like tab?
hi ,
paste this code and add two textbox control's
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{TAB}"
End If
End Sub