private void btExcluirLivro_Click(object sender, EventArgs e) { if (dgvLivros.CurrentRow.Cells[0].Value != null) { DialogResult resp = MessageBox.Show("Deseja realmente excluir este registro?", "Excluir", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1); if (resp == System.Windows.Forms.DialogResult.Yes) { bool status = false; configuracoesBLL confbll = new configuracoesBLL(); configuracoesDTO confdto = new configuracoesDTO(); confdto.idLivroConf = dgvLivros.CurrentRow.Cells[0].Value.ToString(); status = confbll.excluir_livro(confdto); if (status == true) { MessageBox.Show("Registro excluido com sucesso!"); dgvLivros.Rows.Clear(); carregar_livros(); } } } else { MessageBox.Show("Escolha um registro para excluir."); } }