Código KeyAscii
Tengo un control txtbox y quiero que digan como hacer para que al ingresar datos solo admita las letras ES o N. Yo codifique lo siguiente:
Private Sub txtprincipal_KeyPress(KeyAscii As Integer)
If (KeyAscii > 64 And KeyAscii < 91) Or KeyAscii = 241 Or (KeyAscii > 96 And KeyAscii < 123) Or KeyAscii = 209 Then
Else
KeyAscii = 0
End If
End Sub
y el formato para mayusculas:
txtprincipal.Text = Format(UCase(txtprincipal.Text), "String")
Desde ya muy agradecida.
Private Sub txtprincipal_KeyPress(KeyAscii As Integer)
If (KeyAscii > 64 And KeyAscii < 91) Or KeyAscii = 241 Or (KeyAscii > 96 And KeyAscii < 123) Or KeyAscii = 209 Then
Else
KeyAscii = 0
End If
End Sub
y el formato para mayusculas:
txtprincipal.Text = Format(UCase(txtprincipal.Text), "String")
Desde ya muy agradecida.
Respuesta de Daniel Gomez
1