private void btnAgregarInsumo_Click(object sender, EventArgs e) { Principal.CodigoPrincipalAbm = null; FrmVenta frm = new FrmVenta(); frm.Show(); }
private void button1_Click(object sender, EventArgs e) { if (Grilla.CurrentRow == null) { MessageBox.Show("Debe seleccionar un registro"); return; } string CodVenta = Grilla.CurrentRow.Cells[0].Value.ToString(); Principal.CodigoPrincipalAbm = CodVenta; FrmVenta frm = new FrmVenta(); frm.Show(); }