Composite Reporting
Hi there,
how will composite reporting done with FastReport.NET? I have to put up to five different reports together as one and have to produce an index, additionally.
I hope that there will be a way or a soon feature-add to FastReport.NET ...
how will composite reporting done with FastReport.NET? I have to put up to five different reports together as one and have to produce an index, additionally.
I hope that there will be a way or a soon feature-add to FastReport.NET ...
Comments
Do this:
// the first report
report1.Load(...);
report1.Prepare();
// the second report
report1.Load(...);
report1.Prepare(true);
// the third report
report1.Load(...);
report1.Prepare(true);
report1.ShowPrepared();