hi
is it possible to display the data in crystal report in this example?
--------------------------
| Data | Data |
| A | C |
---------------------------
| Data | Data |
| B | D |
---------------------------
with this code
....
...
..
CrystalReportViewer reportViewer = new CrystalReportViewer(); CrystalReport creport = new CrystalReport(); creport.SetDataSource(Ds.Tables[0]); var t = reportViewer.ReportSource = creport; crystalReportViewer1.ReportSource = t;