如何控制报表中detail band 的输出条数(如10条),即使数据库只有一条记录?(50分)

  • 主题发起人 主题发起人 hotkey
  • 开始时间 开始时间
H

hotkey

Unregistered / Unconfirmed
GUEST, unregistred user!
在detail band中加条底线,希望能填满整页(不论有几条记录).
 
1。增加空记录(难了点)。在主档的ONCalcFields写。
2。把报表的背景先画上线(格子)。这样就可以了。
 
用编程实现没那么烦(自动打印空余行)!
提示代码:
showc1print.query1.open;
i:=31-showc1print.query1.RecordCount mod 31;
//31为总行数,可先打一张空表算出来//
for j:=1 to ido
begin
showc1print.query1.Append;
showc1print.query1.Post;
end;
showc1print.QuickRep1.print;
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部