private void fornecedorToolStripMenuItem_Click(object sender, EventArgs e) { frmConsultaFabricante f = new frmConsultaFabricante(); f.ShowDialog(); f.Dispose(); }
private void btLocalizar_Click(object sender, EventArgs e) { frmConsultaFabricante f = new frmConsultaFabricante(); f.ShowDialog(); if (f.codigo != 0) { DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLFabricante bll = new BLLFabricante(cx); ModeloFabricante modelo = bll.CarregaModeloFabricante(f.codigo); txtCodigo.Text = modelo.IDFabricante.ToString(); txtNome.Text = modelo.NomeFabricante; txtDescricao.Text = modelo.DescricaoFabricante; alteraBotoes(3); } else { this.LimpaTela(); this.alteraBotoes(1); } f.Dispose(); }