private void btnsalvar_Click(object sender, EventArgs e) { if (ttbnome.Text.Trim() == "") { MessageBox.Show("Campo nome deve ser preenchido!"); return; } CCategoria c = new CCategoria(); c.nome = ttbnome.Text; if (status == 0) { c.inserirCategoria(); } if (status == 1) { c.atualizarCategoria(id); } limpar(); leitura(); MessageBox.Show("Salvo com sucesso!"); }
private void pesquisar() { dt = new DataTable(); CCategoria c = new CCategoria(); dt = c.pesquisar(ttbpesquisar.Text, cbbfiltro.Text); grid.DataSource = dt; }
private void btnexcluir_Click(object sender, EventArgs e) { if (id > 0) { if (MessageBox.Show("Deseja Excluir?", "Excluir!", MessageBoxButtons.YesNo) == DialogResult.Yes) { CCategoria c = new CCategoria(); if (c.excluirCategoria(id)) { limpar(); leitura(); MessageBox.Show("Excluído com sucesso!"); } else { MessageBox.Show("Não foi possivel efetuar a exclusão!"); } } } else { MessageBox.Show("Selecione um Categoria para excluir!"); } }