Access page number from C++ Builder / Delphi
Sorry, posted in 2.xx forums by error
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
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
Comments
Thank you very much
Best Regards, Ramon Arguelles