Beispiel #1
0
        private void MostraVisaoEtapa()
        {
            FormEtapa = ShowFormVisao(typeof(DRCadEtapa), "Cadastro de Etapas", "DREtapa",
                                      pnlEtapa, string.Empty, InfoSelecionada);

            FormEtapa.NavegaEntreRegisto = new DR.Lib.Winform.DRFormVisao.NavengaEntreRegistroEventHandler(NavegaEtapa);
            FormEtapa.Navega();
        }
        private void MostraVisaoInvestidor()
        {
            FormInvestidor = ShowFormVisao(typeof(DRCadInvestidor), "Investidores", "DRInvestidores",
                                           splitContainer1.Panel1, string.Empty, null);

            FormInvestidor.NavegaEntreRegisto = new DRFormVisao.NavengaEntreRegistroEventHandler(NavegaInvestidor);
            FormInvestidor.Navega();
        }
Beispiel #3
0
        private void ListarDespesa()
        {
            string filtro = GetFiltroSelecionado();

            if (filtro != string.Empty)
            {
                FormVisaoDespesa =
                    ShowFormVisao(typeof(DRFormDespesa), "Lançamentos de Despesa", "DRDESPESA",
                                  pnlDespesa, filtro, InfoSelecionada);
            }
        }
Beispiel #4
0
 private void MostraVisaoAtividade()
 {
     if (FiltroEtapaSelecionado != string.Empty)
     {
         FormVisaoAtividade =
             ShowFormVisao(typeof(DRCadAtividade), "Cadastro de Atividades", "DRAtividade",
                           pnlAtividade, FiltroEtapaSelecionado, InfoSelecionada);
         FormVisaoAtividade.NavegaEntreRegisto = new DR.Lib.Winform.DRFormVisao.NavengaEntreRegistroEventHandler(NavegaAtividade);
         FormVisaoAtividade.Navega();
     }
     btnAtividades.Enabled = false;
     lbAtividade.Visible   = true;
     btDespeza.Visible     = true;
 }
        private void MostraVisaoPagInvestidor()
        {
            if (FiltroInvestidor != string.Empty)
            {
                FormVisaoPagInvestidor =
                    ShowFormVisao(typeof(DRInvestidorLan), "Financeiro Investidor", "DRPAGAMENTOINVESTIDOR",
                                  pnlLanFin, FiltroInvestidor, null);
                FormVisaoPagInvestidor.NavegaEntreRegisto = new DR.Lib.Winform.DRFormVisao.NavengaEntreRegistroEventHandler(NavegaLanFinanceiro);
                FormVisaoPagInvestidor.Navega();
                btnLanFinan.Enabled = false;
                FormInvestidor.Navega();
            }

            //  lbAtividade.Visible = true;
            //  btDespeza.Visible = true;
        }