Пример #1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            rptStateAccount rpt = new rptStateAccount();

            rpt.Site = this.Site;
            return(rpt);
        }
Пример #2
0
        public void LoadReport(int resId)
        {
            try
            {
                rptStateAccount        crpt          = new rptStateAccount();
                ReservationDataService myResDataServ = new ReservationDataService();

                DataTable storeData = myResDataServ.FindGroupRes(resId);

                //dgvMsr.DataSource = storeData;
                //MonthlyReportData = storeData;
                //StartDate = startDateDgv;
                //EndDate = endDate;
                crpt.Database.Tables["StateAcc"].SetDataSource(storeData);

                crvStateAcc.ReportSource = null;
                crvStateAcc.ReportSource = crpt;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }