private void BtnAlterar_Click(object sender, EventArgs e) { if (TxtCodEan.TextLength < 13) { MessageBox.Show("Digite um Código EAN Válido!"); TxtCodProduto.Focus(); } else { conn.Open(); try { SqlCommand comando = new SqlCommand(@"UPDATE Produto SET Descricao='" + TxtDescri.Text + "', EAN='" + TxtCodEan.Text + "',Categoria='" + CboCategoria.Text + "',PrecoCompra='" + TxtPrecoCompra.Text.Replace(',', '.') + "',Lucro='" + TxtLucro.Text + "',PrecoVenda='" + TxtPrecoVenda.Text.Replace(',', '.') + "',SubCateg='" + CboSubCat.Text + "',EstoqueMin='" + TxtEstoqueMin.Text + "',EstoqueMax='" + TxtEstoqueMax.Text + "',Fabricante='" + CboFabricante.Text + "',ICMS='" + TxtICMS.Text + "',IPI='" + TxtIPI.Text + "',Unidade='" + CboUnidade.Text + "' where (Id_Produto='" + TxtCodProduto.Text + "')", conn) { CommandType = CommandType.Text }; comando.ExecuteNonQuery(); MessageBox.Show("Produto Atualizado com Sucesso!", "SIG", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch { MessageBox.Show("Erro ao Atualizar Produto! Tente Novamente, Use Separador(.) em Preço!", "SIG", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } LimpaDados(); TxtCodProduto.Enabled = false; BtnCadastrar.Enabled = true; BtnAlterar.Enabled = false; BtnDeletar.Enabled = false; TxtDescri.Focus(); conn.Close(); }
private void BtnBuscar_Click(object sender, EventArgs e) { BtnCadastrar.Enabled = false; TxtCodProduto.Enabled = true; TxtCodProduto.Clear(); LimpaDados(); TxtCodProduto.Focus(); }