public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { TopSellingProducts rpt = new TopSellingProducts(); rpt.Site = this.Site; return(rpt); }
private void LoadTopProducts() { TopSellingProducts aTopProductsRep = new TopSellingProducts(); try { //Instantiate the dataset and table adapters aDataSet = new ReportDataSet(); aTopProductsAdapter = new ReportDataSetTableAdapters.TopProductsTableAdapter(); //Fill the dataset aTopProductsAdapter.Fill(aDataSet.TopProducts); //Assign the filled dataset as the data source for the report aTopProductsRep.SetDataSource(aDataSet); //Set up the report viewer object on the form //show the runtime report object crvReports.ReportSource = aTopProductsRep; } 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"); } }