Esempio n. 1
0
        void FrmCadCaracteristicasLoad(object sender, EventArgs e)
        {
            caracteristicas = new cCaracteristicas();
            this.Cursor     = Cursors.WaitCursor;
            caracteristicas.Carrega(dgvCadastro, chkFiltroAtivos.Checked);

            cIntroducoes introducoes = new cIntroducoes();

            introducoes.Carrega(cbxIntroducoes);

            cInformacoesFornecimento informacoes = new cInformacoesFornecimento();

            informacoes.Carrega(cbxInformacoesFornecimento);

            cTermosAprovacao termos_aprovacao = new cTermosAprovacao();

            termos_aprovacao.Carrega(cbxTermosAprovacao);

            cCondicoesMontagem condicoes = new cCondicoesMontagem();

            condicoes.Carrega(cbxCondicoesMontagem);

            cTermosGarantia termos_garantia = new cTermosGarantia();

            termos_garantia.Carrega(cbxTermosGarantia);

            this.Cursor = Cursors.Default;
            SetaEdicaoLocal(false);
        }
Esempio n. 2
0
 void fIntroducoesLoad(object sender, EventArgs e)
 {
     introducoes = new cIntroducoes();
     this.Cursor = Cursors.WaitCursor;
     introducoes.Carrega(dgvCadastro);
     this.Cursor = Cursors.Default;
 }