コード例 #1
0
 private void txtHoraSalidaNoDocente_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }
コード例 #2
0
 private void txtApellidoAltaNoDocente_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloLetras(e);
 }
コード例 #3
0
 private void txtLegajoAlumno_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }
コード例 #4
0
 private void txtPrecioCuotaAlumno_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumerosDecimales(e);
 }
コード例 #5
0
 private void txtNumeroResponsable_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }
コード例 #6
0
 private void txtApellidoResponsable_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloLetras(e);
 }
コード例 #7
0
 private void txtNombreAlumno_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloLetras(e);
 }