彩票走势图

报表控件FastReport使用教程:将报告的一页打印成多份

翻译|使用教程|编辑:董玉霞|2022-08-16 09:33:19.390|阅读 623 次

概述:本文主要介绍如何在FastReport.NET中将报告的一页打印成多份。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

本文主要介绍如何在FastReport.NET中将报告的一页打印成多份。

FastReport.NET

FastReport.NET官方版下载

如果您需要分几份打印报表的特定页面,我们必须使用编码。您可以从用户应用程序代码配置打印属性,也可以在打印对话框中手动配置。这使您可以选择报告的特定页面并设置副本数量。但是,问题是您只能设置要打印的所有页面的份数。这就是为什么我们必须将打印过程分成几个步骤才能达到目标。

假设您需要打印第二页的三份副本和其余页面的一份副本。所以我们将这个过程分为两个步骤:打印第二页和其余页面。

//We create a report
 var report = new Report();
//We create a data source 
DataSet data = new DataSet();
//We download the data from the file
 data.ReadXml("~/nwind.xml");
//We register the data source in the report 
 report.RegisterData(data, "NorthWind");
//We download the report template
 report.Load("~/Master-Detail.frx");
 
 //We prepare the report
 report.Prepare();
 //We choose the second page of the report 
 report.PrintSettings.PageNumbers = "2";
 //We set a number of copies
 report.PrintSettings.Copies = 3;
 //We hide the print dialog box
 report.PrintSettings.ShowDialog = false;
 //We sent the report to print 
 report.Print();
 //We repeat the same steps for the rest of the pages of the report
 report.PrintSettings.PageNumbers = "1, 3, 4, 5";
 report.PrintSettings.Copies = 1;
 report.Print();

因此,我们可以将必要的页面与其他页面分开打印。上述代码的唯一缺点是打印的页面会乱序。如果您仍需要按顺序打印页面,则必须将过程分为三个步骤:打印报告的第一页、第二页和其余页面。

本次FastReport.NET使用教程就介绍到这里了, 更多产品授权信息点击查看FastReport.NET价格,或者咨询慧都在线客服。

FastReport.NET技术QQ群:536197826      欢迎进群一起讨论


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP