Пример #1
0
 private void txt_telefono_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.Telefono(e);
 }
Пример #2
0
 private void txt_nombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.SoloLetras(e);
 }
Пример #3
0
 private void txt_cantidad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.SoloNumeros(e);
 }
Пример #4
0
 private void txt_codigo_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.Codigo(e);
 }
Пример #5
0
 private void txt_ppublico_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.SoloNumeros(e);
 }