彩票走势图

报表开发工具FastReport.NET使用教程:如何将报表中的一页分开打印

翻译|使用教程|编辑:凌霄汉|2022-02-25 10:39:35.050|阅读 390 次

概述:本文主要为大家介绍在FastReport.NET如何将报表中的一页分开打印,最新版本更新,欢迎大家下载使用!

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

相关链接:

在您使用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是适用于.NET Core 3,ASP.NET,MVC和Windows窗体的全功能报告库。使用FastReport .NET,您可以创建独立于应用程序的.NET报告。


FastReport 技术交流群:702295239    欢迎一起进群讨论


标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP