public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            TrayInstallPlan rpt = new TrayInstallPlan();

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

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

            DataSet ds = GetDs();

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