I want to create a report of a list of objects that don't persist in db in VS2008 C#! When I use Crystal Report, I should reference the report to a special Table in DB or an object in Application. But I want to report from a non-persistent list which is a list of objects from a class.
+1
A:
It is possible to push a dataset into a report table like this when you have a ReportDocument...
Report.Database.Tables["Customer"]SetDataSource (dataSet);
However, I'm not sure whether this is possible without having a datasource set for the reportdocument first. It is worth a shot I guess.
G Berdal
2010-07-24 22:13:34
I found the solution in http://www.scribd.com/doc/24689401/Crystal-Reports
Yadollah
2010-07-25 05:09:49