private void btnSair_Click(object sender, EventArgs e) { ConsultaProdutos cons = new ConsultaProdutos(); cons.Show(); this.Close(); }
private void btnSalvar_Click(object sender, EventArgs e) { string nome = txtNome.Text.Trim(); string unidade = txtUnidade.Text.Trim(); string marca = txtMarca.Text.Trim(); string categoria = txtCategoria.Text.Trim(); string fornecedor = txtFornecedor.Text.Trim(); string observacoes = txtObservacoes.Text.Trim(); if (txtNome.TextLength < 1 || txtValorCusto.TextLength < 1 || txtValorFrete.TextLength < 1 || txtValorVenda.TextLength < 1) { MessageBox.Show("Por favor, preencha adequadamente os campos referentes ao Nome do produto, Valor de custo, Valor de frete e Valor de venda !"); } else { int valorCusto = Convert.ToInt16(txtValorCusto.Text); int valorVenda = Convert.ToInt16(txtValorVenda.Text); int valorFrete = Convert.ToInt16(txtValorFrete.Text); string Config = "server=127.0.0.1;userid=root;database=bd_commanager"; MySqlConnection conex = new MySqlConnection(Config); conex.Open(); MySqlCommand Query = new MySqlCommand("UPDATE produto SET Nome='" + nome + "', Unidade='" + unidade + "', Marca='" + marca + "', Categoria='" + categoria + "', Fornecedor='" + fornecedor + "', Observacoes='" + observacoes + "', ValorCusto='" + valorCusto + "', ValorVenda='" + valorVenda + "', ValorFrete='" + valorFrete + "' WHERE Id=" + ClassInfo.IdProdutoGlobal + ";", conex); Query.ExecuteNonQuery(); Query.Connection = conex; if (conex.State == ConnectionState.Open) { MessageBox.Show("Alterado com sucesso!"); ConsultaProdutos cons = new ConsultaProdutos(); cons.Show(); this.Close(); } else { MessageBox.Show("Erro ao alterar!"); } conex.Close(); } }