コード例 #1
0
        private void subCategoriaToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            frmConsultaSubCategoria f = new frmConsultaSubCategoria();

            f.ShowDialog();
            f.Dispose();
        }
コード例 #2
0
        private void btnLocalizar_Click(object sender, EventArgs e)
        {
            frmConsultaSubCategoria f = new frmConsultaSubCategoria();

            f.ShowDialog();
            if (f.codigo != 0)
            {
                DALConexao         cnx                = new DALConexao(DadosDaConexao.StringDeConexao);
                BLLSubCategoria    bllSubCategoria    = new BLLSubCategoria(cnx);
                ModeloSubCategoria ModeloSubCategoria = bllSubCategoria.CarregaModeloSubCategoria(f.codigo);
                txtScatCod.Text         = ModeloSubCategoria.ScatCod.ToString();
                txtNome.Text            = ModeloSubCategoria.ScatNome.ToString();
                cmbCatCod.SelectedValue = ModeloSubCategoria.CatCod;
                this.alteraBotoes(3);
            }
            else
            {
                this.LimpaTela();
                this.alteraBotoes(1);
            }

            f.Dispose();
        }