reportbuilder 中的ppviewer的使用!(50分)

  • 主题发起人 主题发起人 ssyuwn
  • 开始时间 开始时间
S

ssyuwn

Unregistered / Unconfirmed
GUEST, unregistred user!
我在使用ppreport和ppviewer时出现ppviewer只能对应一个固定的ppreport,而且是ppreport
的更新内容不能显示在同一个ppviewer中.不知道如何设置ppviewer的属性和方法才能让不同的
ppreport可以使用同一个ppviewer或者说不同信息的ppreport都可以在同一个ppviewer中显示.
 
ppViewer1.Report:=ppReport1;
ppReport1.PrintToDevices;
ppViewer1.Report:=ppReport2;
ppReport2.PrintToDevices;
以上代码就能让不同的ppreport可以使用同一个ppviewer,
注意是使用“PrintToDevices”方法,而不是Print或PrintReport。
至于更新的内容,只要在执行ppViewer1.Report:=ppReport1;之前,
数据源先进行一下Requery就可以了。
 
后退
顶部