private void btnEditarGrid_Click(object sender, EventArgs e) { if (dtgRevistas.Rows.Count > 0) { novaRevista = new frmIncRevistas(this, "EDITAR", Convert.ToInt32(dtgRevistas.CurrentRow.Cells["ID_REV"].Value), Convert.ToInt32(idusu)); novaRevista.Show(); } else { MessageBox.Show("Nenhum registro selecionado para editar.", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void btnIncluir_Click(object sender, EventArgs e) { novaRevista = new frmIncRevistas(this, "INCLUIR", 0, idusu); novaRevista.Show(); }