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