J
joinrry
Unregistered / Unconfirmed
GUEST, unregistred user!
我写了一段动态创建报表的代码,但不知什么原因,预览时可以显示表头标题,
可打印出来的时候表头标题就不见了,而且纸张上没有留下表头标题的位置。
qrpsingle := TQuickRep.Create(self);
qrpsingle.Bands.HasColumnHeader := true;
qrpsingle.Bands.ColumnHeaderBand.Height :=30;
qrpsingle.Bands.HasDetail := true;
qrpsingle.Bands.DetailBand.Height :=25;
qrpsingle.DataSet := qrpadoqry;
//创建报表标题
qrpband := TQRBand.Create(self);
qrpband.Parent :=qrpSingle;
qrptitle :=TQRLabel.Create(self);
qrptitle.Parent :=qrpband;
qrptitle.Caption :='TempTitle';
可打印出来的时候表头标题就不见了,而且纸张上没有留下表头标题的位置。
qrpsingle := TQuickRep.Create(self);
qrpsingle.Bands.HasColumnHeader := true;
qrpsingle.Bands.ColumnHeaderBand.Height :=30;
qrpsingle.Bands.HasDetail := true;
qrpsingle.Bands.DetailBand.Height :=25;
qrpsingle.DataSet := qrpadoqry;
//创建报表标题
qrpband := TQRBand.Create(self);
qrpband.Parent :=qrpSingle;
qrptitle :=TQRLabel.Create(self);
qrptitle.Parent :=qrpband;
qrptitle.Caption :='TempTitle';