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