up vote 0 down vote favorite
share [g+] share [fb]

I'm using QuickReports within my application and would like to have "Page x of x" within the footer. What's the best way to do this?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

First prepare the document, so the system itselfs know how many pages will produce. There's a system variable you can use (no QR at hand to tell you the exact name).

For example:

procedure TForm1.Click(Sender: TObject);
begin
  //this actually run the report in memory to 
  //calculate things like total page count
  Report1.Prepare;  
  Report1.Print;  //or PreviewModal;
end;
link|improve this answer
feedback

A solution is to count the number of pages during preview so when you send it to the printer you can place it in the footer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.