Codigo ascii de la tecla tabulador
Publicado por Juan (2 intervenciones) el 09/11/2009 19:30:46
Buen dia queria que me ayudaran con el codigo ascii de la tecla tabulador, gracias.
Valora esta pregunta


0
txtAñosRestantes.keypress (...............)
If e.KeyChar = vbTab Then
If txtAñosRestantes.Text = "" Then
txtAñosRestantes.SelectAll()
txtAñosRestantes.Focus()
Else
e.Handled = False
End If
Else
e.Handled = True
End If