コード例 #1
0
ファイル: CRAcumuladosPorTipo.cs プロジェクト: hvivani/SOffT
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            CRAcumuladosPorTipo rpt = new CRAcumuladosPorTipo();

            rpt.Site = this.Site;
            return(rpt);
        }
コード例 #2
0
ファイル: ReportesCreador.cs プロジェクト: hvivani/SOffT
 public static void AcumuladosPorTipo(DataSet fuente)
 {
     CRAcumuladosPorTipo crAcumuladosPorTipo = new CRAcumuladosPorTipo();
     crAcumuladosPorTipo.SetDataSource(fuente);
     FrmReportes visor = new FrmReportes(crAcumuladosPorTipo);
     visor.ShowDialog();
 }
コード例 #3
0
ファイル: ReportesCreador.cs プロジェクト: hvivani/SOffT
        public static void AcumuladosPorTipo(DataSet fuente)
        {
            CRAcumuladosPorTipo crAcumuladosPorTipo = new CRAcumuladosPorTipo();

            crAcumuladosPorTipo.SetDataSource(fuente);
            FrmReportes visor = new FrmReportes(crAcumuladosPorTipo);

            visor.ShowDialog();
        }
コード例 #4
0
ファイル: CRAcumuladosPorTipo.cs プロジェクト: hvivani/SOffT
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     CRAcumuladosPorTipo rpt = new CRAcumuladosPorTipo();
     rpt.Site = this.Site;
     return rpt;
 }