Access page number from C++ Builder / Delphi
I would like to acces the "page" and "page#" from C++ Builder in order to:
Before start a report, tell from what page I want to start to number the report
Once the report is finished, to know what is the last page number in order to use it for another report.
One thing like:
Report1->...->Page=MyPageNumber;
Report1->PrepareReport();
MyPageNumber=Report1->...->Page;
Report2->...->Page=MyPageNumber;
Report2->PrepareReport();
MyPageNumber= Report2->...->Page;
Thanks in advance. Ramon Arguelles
Before start a report, tell from what page I want to start to number the report
Once the report is finished, to know what is the last page number in order to use it for another report.
One thing like:
Report1->...->Page=MyPageNumber;
Report1->PrepareReport();
MyPageNumber=Report1->...->Page;
Report2->...->Page=MyPageNumber;
Report2->PrepareReport();
MyPageNumber= Report2->...->Page;
Thanks in advance. Ramon Arguelles