예제 #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);
 }