Esempio n. 1
0
 private void txt_telefono_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.Telefono(e);
 }
Esempio n. 2
0
 private void txt_nombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.SoloLetras(e);
 }
Esempio n. 3
0
 private void txt_cantidad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.SoloNumeros(e);
 }
Esempio n. 4
0
 private void txt_codigo_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.Codigo(e);
 }
Esempio n. 5
0
 private void txt_ppublico_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.SoloNumeros(e);
 }