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