直接打印FastReport

发布于 2024-08-12 02:00:37 字数 155 浏览 3 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫烠⑼条掵仅有一顆心 2024-08-19 02:00:37

只需调用PrepareReport,然后调用Print。您不必显示预览。

frxReport1.PrepareReport;
frxReport1.Print;

Just call PrepareReport followed by Print. You don't have to show the preview.

frxReport1.PrepareReport;
frxReport1.Print;
流年已逝 2024-08-19 02:00:37

它写在开发人员帮助文件(程序员手册)“构建复合报告(批量打印)”一章中

frxReport1.LoadFromFile('1.fr3');
frxReport1.PrepareReport;
frxReport1.LoadFromFile('2.fr3');
frxReport1.PrepareReport(False);
frxReport1.Print;

It's written in developper help file (Programmer Manual) Chapter "Building a composite report (batch printing)"

frxReport1.LoadFromFile('1.fr3');
frxReport1.PrepareReport;
frxReport1.LoadFromFile('2.fr3');
frxReport1.PrepareReport(False);
frxReport1.Print;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文