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

            rpt.Site = this.Site;
            return(rpt);
        }
 private void toolStripComboBox1_DropDownClosed(object sender, EventArgs e)
 {
     ProjectFlowStatusProgress PFSP = new ProjectFlowStatusProgress();
     DataSet ds = GetDs();
     if (ds.Tables[0].Rows.Count != 0)
     {
         PFSP.SetDataSource(ds);
         crystalReportViewer1.ReportSource = PFSP;
     }
 }
 private void crystalReportViewer1_Load(object sender, EventArgs e)
 {
     ProjectFlowStatusProgress PFSP = new ProjectFlowStatusProgress();
     DataSet ds = GetDs();
     if (ds.Tables[0].Rows.Count != 0)
     {
         PFSP.SetDataSource(ds);
         crystalReportViewer1.ReportSource = PFSP;
     }
 }
        private void toolStripComboBox1_DropDownClosed(object sender, EventArgs e)
        {
            ProjectFlowStatusProgress PFSP = new ProjectFlowStatusProgress();
            DataSet ds = GetDs();

            if (ds.Tables[0].Rows.Count != 0)
            {
                PFSP.SetDataSource(ds);
                crystalReportViewer1.ReportSource = PFSP;
            }
        }
        private void crystalReportViewer1_Load(object sender, EventArgs e)
        {
            ProjectFlowStatusProgress PFSP = new ProjectFlowStatusProgress();
            DataSet ds = GetDs();

            if (ds.Tables[0].Rows.Count != 0)
            {
                PFSP.SetDataSource(ds);
                crystalReportViewer1.ReportSource = PFSP;
            }
        }
 public ProjectFlowStatusProgressRpt()
 {
     InitializeComponent();
     crystalReportViewer1.DisplayGroupTree = false;
     ProjectBind();
     DataSet ds = GetDs();
     if (ds.Tables[0].Rows.Count != 0)
     {
         ProjectFlowStatusProgress PFSP = new ProjectFlowStatusProgress();
         PFSP.SetDataSource(ds);
         crystalReportViewer1.ReportSource = PFSP;
     }
 }
        public ProjectFlowStatusProgressRpt()
        {
            InitializeComponent();
            crystalReportViewer1.DisplayGroupTree = false;
            ProjectBind();
            DataSet ds = GetDs();

            if (ds.Tables[0].Rows.Count != 0)
            {
                ProjectFlowStatusProgress PFSP = new ProjectFlowStatusProgress();
                PFSP.SetDataSource(ds);
                crystalReportViewer1.ReportSource = PFSP;
            }
        }
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     ProjectFlowStatusProgress rpt = new ProjectFlowStatusProgress();
     rpt.Site = this.Site;
     return rpt;
 }