Example #1
0
 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);
     }
 }
Example #2
0
 private void btnIncluir_Click(object sender, EventArgs e)
 {
     novaRevista = new frmIncRevistas(this, "INCLUIR", 0, idusu);
     novaRevista.Show();
 }