Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to do report without database?
Message
From
23/07/2006 13:44:24
 
General information
Forum:
ASP.NET
Category:
Reporting
Environment versions
Environment:
C# 1.1
Miscellaneous
Thread ID:
01138935
Message ID:
01138946
Views:
17
Hi, Dmitry,

Here's how I do it - (and this is assuming that when you built the report, you specified a dataset or XML at designtime when you designed the report content)...

Assuming you've instantiated the report at runtime, you can push the dataset in by doing the following:
foreach (Table oTable in oReport.Database.Tables)
   oTable.SetDataSource( MyDataSet.Tables[ oTable.Name.ToString() ]);            
You can also use report parameter fields. I prefer to use datasets, but report parameter fields should work as well.

Kevin
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform