如何使用 ActiveReports3 将页码添加到报表中每页的底部?
我试图了解如何使用 ActiveReports3 将页码添加到每个页面的底部。
例如
第 1 页(共 10 页)。
谢谢,
Mo
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 ReportInfo 对象与以下 FormatString 结合使用
Page {PageNumber} of {PageCount}
您还可以使用 ReportInfo 对象通过此 FormatString
Printed 显示打印时间:{RunDateTime}
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}
使用“ReportInfo”控件并设置“FormatString”属性。
Use the "ReportInfo" control and set the "FormatString" property.
Data Dynamics 网站上有两个关于如何执行此操作的演练。 您可以从以下页面查看两者的链接:http://www.datadynamics。 com/Help/ARNET3/ar3oriPageNumberingWalkthroughs.html 以下页面还提供了如何完全用代码执行此操作的示例:http://www.datadynamics.com/Help/ARNET3/ActiveReports3~DataDynamics.ActiveReports.ReportInfo.html
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