Esempio n. 1
0
 private void txtCantidad_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.soloNumeros(e);
 }
Esempio n. 2
0
 private void txtEmpleado_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.soloNumeros(e);
 }
Esempio n. 3
0
 private void txtPrecio_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.numerosConDecimales(e);
 }
Esempio n. 4
0
 private void txtIdFactura_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validacion.soloNumeros(e);
 }