首页 > 学院 > 开发设计 > 正文

ReportBuilder设置打印页范围技巧

2019-11-18 17:59:27
字体:
来源:转载
供稿:网友

2005-6-23 fh@mail.trisunwyse.com
技术原理
     通过在TpPReport的BeforePrint事件中对TPrinterDevice的PageSetting属性和PageList属性进行赋值
为何要如此处理?
根据分析ReportBuilder源码,我们得到如下的调用顺序TppViewer -> TppProducer -> TppPrinterDevice -> TppPageRequest -> TppPublisher,其中 TppPageRequest 封装了打印页范围信息,而TppPrinterDevice 负责将指定的页发送到PrinterCanvas

实现步骤
  1、在调用单元声明一个类私有变量,用于保存打印页范围
  type
    ...
  private
    sPageRange: string;
    ...
  end;
  2、在调用单元声明一个类私有过程,用于处理TppReport.BeforePrint事件
procedure TfrmMain.ppReportBeforePrint(Sender: TObject);
begin
  if Sender is TppReport then
    if (Sender as TppReport).PrinterDevice <> nil then
    begin
      (Sender as TppReport).PrinterDevice.PageSetting := psPageList;
      PPTextToPageList(sPageRange, (Sender as TppReport).PrinterDevice.PageList, True);
    end;
end;
  3、在打印之前设置打印页范围,将TppReport.BeforePrint引导到自定义过程
  sPageRange := '3-5';
  (ppViewer1.Report as TppReport).BeforePrint := ppReportBeforePrint;
  (ppViewer1.Report as TppReport).ShowPrintDialog := False;
  ppViewer1.Print;

注意事项
  1,如果找不到TppReport类别,在接口引用单元添加ppReport单元
  2,如果找不到psPageList类别,在接口引用单元添加ppTypes单元
  3,如果找不到ppTextToPageList函数,在接口引用单元添加ppUtils单元
  4,sPageRange可以定义三种类型的页范围
     A:起止页:'3-10'//连接线分隔
     B:分隔页:'3,5,7'//逗号分隔
     C:单独页:'7'



上一篇:让Fastreport3.x支持中文PDF的输出

下一篇:以远程计算机上的用户身份访问Com+应用

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注