Ejemplo n.º 1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            TrayPrePlan rpt = new TrayPrePlan();

            rpt.Site = this.Site;
            return(rpt);
        }
Ejemplo n.º 2
0
        private void crystalReportViewer1_Load(object sender, EventArgs e)
        {
            TrayPrePlan TPP = new TrayPrePlan();

            DataSet ds = GetDs();
            if (ds.Tables[0].Rows.Count != 0)
            {
                TPP.SetDataSource(ds);
                crystalReportViewer1.ReportSource = TPP ;
            }
        }
Ejemplo n.º 3
0
        private void crystalReportViewer1_Load(object sender, EventArgs e)
        {
            TrayPrePlan TPP = new TrayPrePlan();

            DataSet ds = GetDs();

            if (ds.Tables[0].Rows.Count != 0)
            {
                TPP.SetDataSource(ds);
                crystalReportViewer1.ReportSource = TPP;
            }
        }
Ejemplo n.º 4
0
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     TrayPrePlan rpt = new TrayPrePlan();
     rpt.Site = this.Site;
     return rpt;
 }