fastreport2.5 如何动态设置报表的长度(50分)

  • 主题发起人 主题发起人 gzyhl1
  • 开始时间 开始时间
G

gzyhl1

Unregistered / Unconfirmed
GUEST, unregistred user!
fastreport2.5 如何动态设置报表的长度
 
怎么没人回答呢?
 
自定義紙張大小就可以了。
 
“报表的长度”?
是指纸张大小吗?
 
frReport1.LoadFromFile(ExtractFilePath(Application.ExeName) + 'Untitled.frf');
if StrGrid.RowCount = 6 then
frReport1.Pages[0].pgHeight := 1000
else
frReport1.Pages[0].pgHeight := 2000;
frReport1.SaveToFile(ExtractFilePath(Application.ExeName) + 'Untitled.frf');

frReport1.LoadFromFile(ExtractFilePath(Application.ExeName) + 'Untitled.frf');
frReport1.PrepareReport;
frReport1.ShowPreparedReport;
记得Save一次,然后再Load.
 
后退
顶部