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