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

            rpt.Site = this.Site;
            return(rpt);
        }
예제 #2
0
 private void FrmLandAssetReport_Load(object sender, EventArgs e)
 {
     try
     {
         OleDbConnection cn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Application.StartupPath + "\\dbAsset.accdb;Persist Security Info=True");
         //OleDbConnection cn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Project 2016\AutomatedAssetMIS\AutomatedAssetMIS\dbAsset.accdb;Persist Security Info=True");
         OleDbDataAdapter adapter = new OleDbDataAdapter("select Land_Owner_Name, Land_Owner_Phone, Land_Location, Land_Width, Land_Length, Land_Sale_Rentage, Land_Agent_Name, Land_Agent_Phone from tblLand", cn);
         DataSet          ds      = new DataSet();
         adapter.Fill(ds, "Land");
         CrystalReportLand rpt = new CrystalReportLand();
         rpt.SetDataSource(ds);
         crystalReportViewer1.ReportSource = rpt;
     }
     catch (Exception er)
     {
         MessageBox.Show(er.Message);
     }
 }