views:

42

answers:

2

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
I found the solution in http://www.scribd.com/doc/24689401/Crystal-Reports
Yadollah
A: 

I found the solution in scribd.com/doc/24689401/Crystal-Reports

Yadollah