怎样在程序中改变FastReport报表的页高度?因每页的记录数不同。(100分)

  • 主题发起人 主题发起人 youcheng
  • 开始时间 开始时间
Y

youcheng

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样在程序中改变FastReport报表的页高度?因每页的记录数不同。
 
有人会吗?
 
tmpBand := TfrBandView.Create;
tmpBand.SetBounds(0, 90, 0, 90);
tmpBand.BandType := btPageHeader;
tmpPage.Objects.Add(tmpBand);
 
to:songjia
能否说得详细点,我很菜。
 
tmpBand := TfrBandView.Create;
//创建一个临时Band
tmpBand.SetBounds(0, 90, 0, 90);
//设置临时Band的边距
tmpBand.BandType := btPageHeader;
//将Band的类型定义为页头
tmpPage.Objects.Add(tmpBand);
//在页面上加入这个页头
 
谢谢,不知什么原因,好久不能在这里发贴子,现在好了。
 

Similar threads

回复
0
查看
1K
不得闲
D
回复
0
查看
889
DelphiTeacher的专栏
D
D
回复
0
查看
857
DelphiTeacher的专栏
D
后退
顶部