Hi,
I am creating an offline report with web service, My problem is that i need to produce very large report.
I am using XtraReport
I want to add data to to the report in a loop and not in one bulk how can i do it?
XtraReport rep = new XtraReport();
rep.DataSource = dsRep; <--loop
rep.DataMember = ((DataSet)rep.DataSource).Tables[0].TableName;
Thx