示例#1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            ChanagepriceRep rpt = new ChanagepriceRep();

            rpt.Site = this.Site;
            return(rpt);
        }
示例#2
0
        private void LoadDiffPrice()
        {
            ChanagepriceRep aChangePriceRep = new ChanagepriceRep();

            try
            {
                //Instantiate the dataset and table adapters
                aDataSet            = new ReportDataSet();
                aChangePriceAdapter = new ReportDataSetTableAdapters.ChangePriceTableAdapter();

                aChangePriceAdapter.Fill(aDataSet.ChangePrice);
                //Assign the filled dataset as the data source for the report
                aChangePriceRep.SetDataSource(aDataSet);
                //Set up the report viewer object on the form
                //show the runtime report object
                crvReports.ReportSource = aChangePriceRep;
            }
            catch (Exception ex)
            {
                //catch an exception thrown during data object intonation
                //or report generation and display based on the dataset
                MessageBox.Show("Data Error Encountered" + ex.ToString(), "ERROR");
            }
        }