private void btnsalvar_Click(object sender, EventArgs e) { if ((txtnome.Text == "")) { MessageBox.Show("Os campos com * são de preenchimento obrigatórios"); } else { Clnmarca Categoria = new Clnmarca(); if (txtcod_marca.Text != "") { Categoria.CodMarca = Convert.ToInt32(txtcod_marca.Text); } Categoria.Nome = txtnome.Text; if (ObjOperacao == clnFuncoesGerais.Operacao.Inclusao) { Categoria.Gravar(); MessageBox.Show("Inserido!!", "Item " + txtnome.Text, MessageBoxButtons.OK, MessageBoxIcon.Information); } txtnome.Text = ""; carregaDataGrid(); } }
private void btnexcluir_Click(object sender, EventArgs e) { int msg; msg = Convert.ToInt32(MessageBox.Show("DESEJA EXCLUIR O REGISTRO? " + Convert.ToString(dgvmarca.CurrentRow.Cells[1].Value), "E X C L U S Ã O", MessageBoxButtons.YesNo, MessageBoxIcon.Information)); if (msg == 6) { Clnmarca objAgenda = new Clnmarca(); objAgenda.CodMarca = Convert.ToInt32(dgvmarca.CurrentRow.Cells[0].Value); objAgenda.ExcluirLogicamente(); MessageBox.Show("Registro Excluído com Sucesso", " E X C L U S Ã O ", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("OPERAÇÃO CANCELADA", "CANCELAMENTO E X C L U S Ã O ", MessageBoxButtons.OK, MessageBoxIcon.Information); } carregaDataGrid(); }
private void FormProdutos_Load(object sender, EventArgs e) { ClnFornecedor objProduto = new ClnFornecedor(); comboFornecedor.DataSource = objProduto.Listar(String.Empty).Tables[0]; comboFornecedor.DisplayMember = "nome_fan"; comboFornecedor.ValueMember = "cod_Fornecedor"; Clncategoria objcat = new Clncategoria(); comboCategoria.DataSource = objcat.Listar(String.Empty).Tables[0]; comboCategoria.DisplayMember = "nome"; comboCategoria.ValueMember = "cod_categoria"; Clnmarca objmar = new Clnmarca(); comboMarca.DataSource = objmar.Listar(String.Empty).Tables[0]; comboMarca.DisplayMember = "nome"; txtcod_produtos.Enabled = false; //OracleConnection ma = new OracleConnection(); //ma.ConnectionString = "Data Source=(DESCRIPTION=" // + "(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))" // + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)));" // + "User Id=hr;Password=123456"; //ma.Open(); //OracleCommand comf = new OracleCommand(); //comf.Connection = ma; //comf.CommandText = "select * from marca"; //OracleDataReader der = comf.ExecuteReader(); //DataTable dat = new DataTable(); //dat.Load(der); //comboMarca.DisplayMember = "nome"; //comboMarca.DataSource = dat; txtcod_produtos.Enabled = false; }
public void carregaDataGrid() { Clnmarca ObjAgenda = new Clnmarca(); dgvmarca.DataSource = ObjAgenda.Listar(txtnome.Text).Tables[0]; dgvmarca.Columns[0].HeaderText = ("Cod"); dgvmarca.Columns[1].HeaderText = ("Marca"); dgvmarca.AutoResizeColumns(); if (dgvmarca.RowCount == 0) { btnpesquisar.Enabled = false; btnexcluir.Enabled = false; MessageBox.Show("Não foram encontrado dados com a informação" + txtnome.Text, "VERIFICAR", MessageBoxButtons.OK, MessageBoxIcon.Information); dgvmarca.DataSource = null; txtnome.Text = ""; txtnome.Focus(); } }