本文介绍了使用Delphi 7对Rave Reports进行美化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个在Delphi 7上使用Rave Reports的应用程序。我希望报告在横向显示其默认显示。我该怎么办?
I have an application that uses Rave Reports on Delphi 7. I want the reports to have its default display in landscape. How am I going to do it?
任何建议都会非常感谢。
Any suggestions would be very much appreciated.
推荐答案
只需删除TRvSystem组件并将SystemPrinter.Orientation设置为poLandScape。示例:
Just drop TRvSystem component and set SystemPrinter.Orientation to poLandScape. exemple:
RvSystem1.SystemPrinter.Orientation := poLandScape;
这篇关于使用Delphi 7对Rave Reports进行美化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!