private void btLocalizar_Click(object sender, EventArgs e) { frmConsultaSubcategoria f = new frmConsultaSubcategoria(); f.ShowDialog(); f.Dispose(); if (f.codigo != 0) { DALConexao cx = new DALConexao(DadosConexao.StringDeConexao); BLLSubCategoria bll = new BLLSubCategoria(cx); ModeloSubCategoria modelo = bll.CarregaModeloSubCategoria(f.codigo); txtCodigo.Text = modelo.ScatCod.ToString(); txtNome.Text = modelo.ScatNome; cbxCategoria.SelectedValue = modelo.CatCod; alteraBotoes(3); } else { this.LimpaTela(); this.alteraBotoes(1); } f.Dispose(); }
private void btLocalizar_Click(object sender, EventArgs e) { frmConsultaSubCategoria consulta = new frmConsultaSubCategoria(); consulta.ShowDialog(); if (consulta.Scodigo != 0) { DALConexao cx = new DALConexao(DadosDaConexao.srtConexao); BLLSubCategoria bll = new BLLSubCategoria(cx); ModeloSubCategoria modelo = bll.CarregaModeloSubCategoria(consulta.Scodigo); txtSCatCod.Text = modelo.SCatCod.ToString(); txtSnome.Text = modelo.SCatNome; cbCatCod.SelectedValue = modelo.CatCod; AlteraBotoes(3); } else { this.LimpaTela(); this.AlteraBotoes(1); } consulta.Dispose(); }