B bjzbing Unregistered / Unconfirmed GUEST, unregistred user! 2006-10-18 #1 如何能让Quick Report 为每一页新增一个页码(第几页共几页)
H hongxing_dl Unregistered / Unconfirmed GUEST, unregistred user! 2006-10-18 #2 页码可以用QRExpr中的Pagenumber变量来解决 总页数可以通过下面的语句: 在预览之前: QuickRep1.Prepare; QRLabel1.Caption := inttostr(QuickRep1.QRPrinter.PageCount);
页码可以用QRExpr中的Pagenumber变量来解决 总页数可以通过下面的语句: 在预览之前: QuickRep1.Prepare; QRLabel1.Caption := inttostr(QuickRep1.QRPrinter.PageCount);
G gwy427 Unregistered / Unconfirmed GUEST, unregistred user! 2006-10-24 #3 Form1.QuickRep1.Prepare; Form1.qrlabel15.Caption:='共 '+inttostr(Form1.quickrep1.QRPrinter.PageCount)+' 页'; 加在预览之前就好了.
Form1.QuickRep1.Prepare; Form1.qrlabel15.Caption:='共 '+inttostr(Form1.quickrep1.QRPrinter.PageCount)+' 页'; 加在预览之前就好了.