private void txtDescuento_TextChanged(object sender, EventArgs e) { Utilidades.ValidaNumeros(txtDescuento, new object[] { "%" }); dgvInsumosFacturar_RowStateChanged(null, null); }
private void txtPrecio_TextChanged(object sender, EventArgs e) { Utilidades.ValidaNumeros(txtPrecio, new object[] { ".", "," }); }