private void txtHoraSalidaNoDocente_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloNumeros(e); }
private void txtApellidoAltaNoDocente_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloLetras(e); }
private void txtLegajoAlumno_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloNumeros(e); }
private void txtPrecioCuotaAlumno_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloNumerosDecimales(e); }
private void txtNumeroResponsable_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloNumeros(e); }
private void txtApellidoResponsable_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloLetras(e); }
private void txtNombreAlumno_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloLetras(e); }