多份打印

您可以使用报表查看器的预览选项卡中的打印设置对话框来设置多份打印操作,同时,您还可以使用代码来设置打印份数。

在打印机设置对话框中设置

1、报表加载到报表查看器之后,点击打印按钮。

2、设置您需要的打印份数。

使用代码进行设置

1、双击报表设计界面的灰色区域,以创建报表ReportStart事件的处理方法。

2、将下面代码粘贴到事件处理方法中。

使用 Visual Basic 编写以下代码

粘贴以下的 Visual Basic.NET 代码到 ReportStart 事件中。

Me.Document.Printer.PrinterSettings.Copies = 5

 

粘贴以下的 Visual Basic.NET 代码到 ReportEnd 事件中。

Me.Document.Printer.Print()

 

使用 C# 编写以下代码

粘贴以下的 C# 代码到 ReportStart 事件中。

this.Document.Printer.PrinterSettings.Copies = 5;

 

粘贴以下的 C# 代码到 ReportEnd 事件中。

this.Document.Printer.Print();