直接打印FastReport
我在 Delphi Win32 中使用 FastReport。
调用 FastReport 时,会在打印之前对其进行预览。
用户有时需要打印一系列报告。这是一份 PITA,可以预览然后单独打印每一份。
如何对报告进行排队并将其直接发送到默认打印机?
I'm using FastReport in Delphi Win32.
When a FastReport is called, it is previewed before you can print it.
The user sometimes needs to print a series of reports. It's a PITA to preview then print each one separately.
How can I queue the reports and send them directly to the default printer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需调用PrepareReport,然后调用Print。您不必显示预览。
Just call PrepareReport followed by Print. You don't have to show the preview.
它写在开发人员帮助文件(程序员手册)“构建复合报告(批量打印)”一章中
It's written in developper help file (Programmer Manual) Chapter "Building a composite report (batch printing)"