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

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

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

            visor.ShowDialog();
        }
コード例 #3
0
ファイル: CRAnticipoVale.cs プロジェクト: hvivani/SOffT
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     CRAnticipoVale rpt = new CRAnticipoVale();
     rpt.Site = this.Site;
     return rpt;
 }
コード例 #4
0
ファイル: ReportesCreador.cs プロジェクト: hvivani/SOffT
 public static void ValeAnticipo(DataSet fuente)
 {
     CRAnticipoVale anticipoVale = new CRAnticipoVale();
     anticipoVale.SetDataSource(fuente);
     FrmReportes visor = new FrmReportes(anticipoVale);
     visor.ShowDialog();
 }