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

            rpt.Site = this.Site;
            return(rpt);
        }
コード例 #2
0
ファイル: ReportesCreador.cs プロジェクト: hvivani/SOffT
        public static void ListadoDeConceptos(DataSet fuente)
        {
            CRConceptos reporteConceptos = new CRConceptos();

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

            visor.ShowDialog();
        }