Enter por Tab
Estimado experto quisiera saber como puedo hacer para que en un formulario excel pueda presionar la tecla enter y esta se comporte como tab, intente con
Private Sub text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys {TAB} True
KeyAscii = 0
End If
End Sub
Gracias
Private Sub text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys {TAB} True
KeyAscii = 0
End If
End Sub
Gracias
1 respuesta
Respuesta de elda_vinci
1