R robert.l Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-28 #2 qreport很简单只要用QRSysData控件
L liuly Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-28 #3 QuickReport1.Prepare; QuickReport1.QRLabel1.Caption := IntToStr(QuickReport1.QRPrinter.PageCount); //在QRLabel1中显示总页数 QuickReport1.Preview;
QuickReport1.Prepare; QuickReport1.QRLabel1.Caption := IntToStr(QuickReport1.QRPrinter.PageCount); //在QRLabel1中显示总页数 QuickReport1.Preview;
E e.com Unregistered / Unconfirmed GUEST, unregistred user! 2000-07-02 #5 QuickReport1.Prepare; QuickReport1.QRLabel1.Caption := IntToStr(QuickReport1.QRPrinter.PageCount); //在QRLabel1中显示总页数 QuickReport1.Cleanup; QuickReport1.Preview;
QuickReport1.Prepare; QuickReport1.QRLabel1.Caption := IntToStr(QuickReport1.QRPrinter.PageCount); //在QRLabel1中显示总页数 QuickReport1.Cleanup; QuickReport1.Preview;
Y yck Unregistered / Unconfirmed GUEST, unregistred user! 2000-07-02 #6 若你用的是QUICKREPORT的话, 好象DELPHI3的qreport里的QRSysData控件可以有当前页码和总页数的选项, 但是到了DELPHI5,却只有当前页码了! 哎,怎么程序越升级功能越弱? 没办法,只能自己计算总页数了。
若你用的是QUICKREPORT的话, 好象DELPHI3的qreport里的QRSysData控件可以有当前页码和总页数的选项, 但是到了DELPHI5,却只有当前页码了! 哎,怎么程序越升级功能越弱? 没办法,只能自己计算总页数了。
T tangcheng Unregistered / Unconfirmed GUEST, unregistred user! 2000-07-02 #7 若为delphi3 1.在报表窗体中加入QRSysData控件 2.选择其相应属性 方法二(编程实现): 1.放置一个标签(label)于页脚 2.计算出相应的纪录数(count) 3.计算相应每页可放置的纪录 4.2/3就是label的caption值.
若为delphi3 1.在报表窗体中加入QRSysData控件 2.选择其相应属性 方法二(编程实现): 1.放置一个标签(label)于页脚 2.计算出相应的纪录数(count) 3.计算相应每页可放置的纪录 4.2/3就是label的caption值.