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

            rpt.Site = this.Site;
            return(rpt);
        }
Пример #2
0
 private void FrmAllRegisteredCars_Load(object sender, EventArgs e)
 {
     try
     {
         OleDbConnection cn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Application.StartupPath + "\\DbCarRental.accdb;Persist Security Info=True");
         //OleDbConnection cn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Project 2016\ComputerizedCarRentalSystem\ComputerizedCarRentalSystem\DbCarRental.accdb;Persist Security Info=True");
         OleDbDataAdapter adapter = new OleDbDataAdapter("select CarRegId, CarType, CarModel, CarMaker, CarColor, CarRentageCost, CarPlateNumber from tblCar", cn);
         DataSet          ds      = new DataSet();
         adapter.Fill(ds, "TblCar");
         CrystalReportAllCars rpt = new CrystalReportAllCars();
         rpt.SetDataSource(ds);
         crystalReportViewer1.ReportSource = rpt;
     }
     catch (Exception er)
     {
         MessageBox.Show(er.Message);
     }
 }