private void btAdicionar_Click(object sender, EventArgs e) { FormAddVenda form = new FormAddVenda(); form.ShowDialog(); if (form.Erro == false) { venda.Create(form.V); AtualizaDGV(); } }
private void btnVisualizar_Click(object sender, EventArgs e) { if (dgvPesquisar.CurrentRow != null) { int key = int.Parse(dgvPesquisar.CurrentRow.Cells[0].Value.ToString()); FormAddVenda form = new FormAddVenda(venda.Read(key), false); form.ShowDialog(this); } else { MessageBox.Show("Selecione uma linha para visualizar!", "Ops...", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }