By Dong Trien Lam - 8/6/2014
After you assign the DataSource to the Report, I want to assign to the label, textbox, xrTableCell1,... Report should I do? or I want to DataBinding, currently running it does not appear at all records // After successful connection Northwind
// Create an empty report. XtraReport1 report = new XtraReport1(); string sql = "select * from Customers"; DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter(sql, cnn); da.Fill(ds); report.DataSource = ds; report.DataAdapter = da; report.DataMember = Customers; // Table Customers of Northwind
|
By Edhy Rijo - 8/11/2014
Hi Dong,
You may want to use a StrataFrame Business Binding Source (BBS) as your report source, this way you can map the business object (BO) properties in the BBS in your report labels or fields object then you need to fill the BO with your data and that will work.
|
|