Esempio n. 1
0
 private void txtTelefono_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarTelefono(e, txtTelefono);
 }
Esempio n. 2
0
 private void txtDisciplina_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarLetra(e, txtDisciplina);
 }
Esempio n. 3
0
 private void txtApellido_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarLetra(e, txtApellido);
 }
Esempio n. 4
0
 private void txtEmail_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarCorreo(e, txtEmail);
 }
Esempio n. 5
0
 private void txtNombreU_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarLetra(e, txtNombreU);
 }
Esempio n. 6
0
 private void txtPosicion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarLetra(e, txtPosicion);
 }
Esempio n. 7
0
 private void txtPin_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarEnteroPos(e);
 }
Esempio n. 8
0
 private void txtCiudad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarLetra(e, txtCiudad);
 }
Esempio n. 9
0
 private void txtPresidente_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.validarLetra(e, txtPresidente);
 }