buenas, amigos, tengo este problema, cuando coloco este comando a un control DTPicker1 para q al tocar "Enter" haga la funcion de la tecla tab y pase a otro objeto, no me funciona, con otros objetos como un text, combo o datacombo si me funciona pero con el DTPicker1 no, como puedo solucionar este problema, muchas gracias
Private Sub DTPicker1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys ("{Tab}")
KeyAscii = 0
End If
End Sub