public FormEditProduto(int id, FormGerenciarProdutos formGerenciador)
        {
            this.pId = id;
            gerenciador = formGerenciador;
            InitializeComponent();

            using (SqlConnection sqlConn = new SqlConnection(@"Data Source=(localdb)\Av2DotNet;Initial Catalog=estoque;Integrated Security=True"))
            {
                using (SqlCommand sqlCommand = new SqlCommand())
                {
                    sqlCommand.CommandText = "SELECT * FROM produto WHERE id = " + this.pId;
                    sqlCommand.Connection = sqlConn;
                    sqlConn.Open();
                    SqlDataReader dataReader;
                    dataReader = sqlCommand.ExecuteReader(); //para caso que retorna registros
                    if (dataReader.Read()) //encontrou registro
                    {
                        txbCodBarras.Text = dataReader[1].ToString();
                        txbDescricao.Text = dataReader[2].ToString();
                        txbFornecedor.Text = dataReader[3].ToString();
                        dtmValidade.Text = dataReader[4].ToString();
                        nudQtdEstoque.Value =  int.Parse(dataReader[5].ToString());
                        txbValorCompra.Text = dataReader[6].ToString();
                        txbValorVenda.Text = dataReader[7].ToString();
                    }
                    sqlConn.Close();
                }
            }
        }
 private void button1_Click(object sender, EventArgs e)
 {
     this.Hide();
     FormGerenciarProdutos gerProd = new FormGerenciarProdutos();
     gerProd.Show();
 }
 public FormAdicionarProduto(FormGerenciarProdutos formGerenciador)
 {
     gerenciador = formGerenciador;
     InitializeComponent();
 }