Is there a way to print more than page using QReport If I am not using
DB
components ?
I don't want to call " .Print" method more than one time ....
You can do it using the OnNeedData event of the
TQuickRep component. Put your data into a StringList , use a counter
(to
control the number of itens in the StringList) and make your report.
For examples , take a look
at http://developers.href.com and search
for "OnNeedData and QuickRep".
--
This is correct. I've built a report generated from a linked list of
records.
The key is that MoreData is set to true when you have data to print.
IE. On
the last record MoreData is true. Next time set it to false.