Crystal Report Binding To the Own Created DataSet
-
Hey Guys need help I created a DataSet with the query that i need. However i will like to display the DataSet Detail to the crystal Report DataSet ds = DBCall.ReturnDataSet(SQL , DBCall.ITSDatabase); CrystalReportViewer1.DisplayGroupTree = false; CrystalReportViewer1.HasCrystalLogo = false; ReportDocument myReportDocument; myReportDocument = new ReportDocument(); myReportDocument.Load(Server.MapPath("CrystalReport2.rpt")); myReportDocument.SetDataSource(ds); CrystalReportViewer1.ReportSource = myReportDocument; CrystalReportViewer1.DataBind(); However i can't seem to display it one the report. I know this is the Push Method however I need to set the layout of the report right? How am i suppose to set it ? Many thanks
KaKaShi HaTaKe