How can I add page numbers to the bottom of each page in a report using ActiveReports3?

StackOverflow https://stackoverflow.com/questions/306493

  •  08-07-2019
  •  | 
  •  

Question

I'm trying to understand how you are supposed to add page numbers to the bottom of each page using ActiveReports3.

E.g.

Page 1 of 10.

Thanks,

Mo

Was it helpful?

Solution 2

Use the "ReportInfo" control and set the "FormatString" property.

OTHER TIPS

Use the ReportInfo object with the following FormatString

Page {PageNumber} of {PageCount}

You can also use the ReportInfo object to display the print time with this FormatString

Printed: {RunDateTime}

There are two walkthroughs on how to do this at Data Dynamics website. You can see a link to both from the following page: http://www.datadynamics.com/Help/ARNET3/ar3oriPageNumberingWalkthroughs.html There is also an example of how to do this entirely in code from the following page: http://www.datadynamics.com/Help/ARNET3/ActiveReports3~DataDynamics.ActiveReports.ReportInfo.html

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top