コード例 #1
0
 private void txtApellido_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Letras(e);
 }
コード例 #2
0
 private void txtNota_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.NumerosDecimal(e);
 }
コード例 #3
0
 private void txtNombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Letras(e);
 }
コード例 #4
0
 private void txtEdad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Numeros(e);
 }