Y youcheng Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-08 #1 怎样在程序中改变FastReport报表的页高度?因每页的记录数不同。
S songjia Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-08 #5 tmpBand := TfrBandView.Create; tmpBand.SetBounds(0, 90, 0, 90); tmpBand.BandType := btPageHeader; tmpPage.Objects.Add(tmpBand);
tmpBand := TfrBandView.Create; tmpBand.SetBounds(0, 90, 0, 90); tmpBand.BandType := btPageHeader; tmpPage.Objects.Add(tmpBand);
S songjia Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-09 #7 tmpBand := TfrBandView.Create; //创建一个临时Band tmpBand.SetBounds(0, 90, 0, 90); //设置临时Band的边距 tmpBand.BandType := btPageHeader; //将Band的类型定义为页头 tmpPage.Objects.Add(tmpBand); //在页面上加入这个页头
tmpBand := TfrBandView.Create; //创建一个临时Band tmpBand.SetBounds(0, 90, 0, 90); //设置临时Band的边距 tmpBand.BandType := btPageHeader; //将Band的类型定义为页头 tmpPage.Objects.Add(tmpBand); //在页面上加入这个页头
Y youcheng Unregistered / Unconfirmed GUEST, unregistred user! 2003-10-16 #8 谢谢,不知什么原因,好久不能在这里发贴子,现在好了。