RDLC报表打印控件使用说明

RDLC报表打印控件使用说明

由于,有个项目使用RDLC来展示、打印报表,鉴于微软的RDLC报表不是很成熟,在使用RDLC报表的时候碰到了一系列问题,其中比较突出的就是报表打印问题,主要体现为3个方面:

1)用户不能代码调用RDLC报表控件的打印按钮;

2RDLC报表控件自带的打印功能,第一次打印的时候经常打印不出来,要多打几次才能打印出内容;

3RDLC报表控件自带的打印功能,打印出来的格式与预设的打印纸张格式往往不一致;

鉴于此,我写了个RDLC报表打印控件,这里要感谢下“蜡人张”,因为写该控件的时候借鉴了蜡人张的关于RDLC报表打印的一篇博文。

该控件只公开了2个类:PrinterMargin具体描述如下。

Printer

+bool PrintDialog(LocalReport, out string)static方法,返回boolean

+bool PrintDialog(LocalReport, Margin, out string)static方法,返回boolean

+bool Print(LocalReport, out string)static方法,返回boolean值,不显示打印机选择对话框

+bool Print(LocalReport, Margin, out string)static方法,返回boolean值,不显示打印机选择对话框

Margin

Margin(left,right,top,bottom),都是decimal类型,左边距、右边距、上边距、下边距

如某个rdlc报表控件为reportViewer1,则可以使用该打印控件来打印该报表,代码如下所示。

String errMsg = "";//打印出错时的返回的错误信息

bool bln = Printer.Print(this.reportViewer1.LocalReport, new Margin(0.2m,0.2m,2.54m,2.54m), out errMsg);//直接打印,并设置了页边距左右都是0.2cm,上下都是0.2cm

================当然亦可打印的时候让其弹出打印对话框==========================

bool bln = Printer.PrintDialog(this.reportViewer1.LocalReport, new Margin(0.2m,0.2m,2.54m,2.54m), out errMsg);//直接打印,并设置了页边距左右都是0.2cm,上下都是0.2cm

================亦可利用纸张的默认边距===============================

bool bln = Printer.PrintDialog(this.reportViewer1.LocalReport , out errMsg);//直接打印,并设置了页边距左右都是0.2cm,上下都是0.2cm,由于C#PageSettings ps = pd.PrinterSettings.DefaultPageSettings获取纸张的默认设置时,其页边距不能准确得到。因此,网上很多人都在说自定义纸张打印的时候,明明是设置了页边距怎么每次打出来设置好的页边距都无效,就是这个原因所致。因此,套打的时候,大家打印的时候,请调用带页边距设置参数的方法。

由于,不知如何粘贴附件,有需要的人可在CSDN里下载,请搜索“RDLC报表打印控件”。

你可能感兴趣的:(报表)