Example #1
0
 private void txtContraseñan_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloLetrasONumeros(e);
 }
Example #2
0
 private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloLetrasONumeros(e);
 }
Example #3
0
 //Validaciones
 private void txtUsuario_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.SoloLetrasONumeros(e);
 }