private void btnNovo_click(object sender, EventArgs e) { frmCadastroAlteracaoProjeto projeto = new frmCadastroAlteracaoProjeto(u, 0); projeto.ShowDialog(); CarregaGrid(); }
private void btnAlterar_click(object sender, EventArgs e) { if (dgvDados.SelectedRows.Count == 1) { int id = Convert.ToInt32(dgvDados.CurrentRow.Cells[0].Value.ToString()); frmCadastroAlteracaoProjeto projeto = new frmCadastroAlteracaoProjeto(u, id); projeto.ShowDialog(); CarregaGrid(); } else { MessageBox.Show("Selecione apenas um Registro!!!"); } }