private void txtTelefono_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarTelefono(e, txtTelefono); }
private void txtDisciplina_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarLetra(e, txtDisciplina); }
private void txtApellido_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarLetra(e, txtApellido); }
private void txtEmail_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarCorreo(e, txtEmail); }
private void txtNombreU_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarLetra(e, txtNombreU); }
private void txtPosicion_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarLetra(e, txtPosicion); }
private void txtPin_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarEnteroPos(e); }
private void txtCiudad_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarLetra(e, txtCiudad); }
private void txtPresidente_KeyPress(object sender, KeyPressEventArgs e) { Validacion.validarLetra(e, txtPresidente); }