FastReport2.5 的BUG?(100分)

  • 主题发起人 主题发起人 ccdos
  • 开始时间 开始时间
C

ccdos

Unregistered / Unconfirmed
GUEST, unregistred user!
2.5 中分栏的页面 从第二页开始全部定位错了,
而且要命的是,2.5编辑过的文件无法用2.47打开了
要用分栏的哥们注意了
同时请教如何处理这个BUG
 
解决了
FR2.5 Can't Print Multi-Colum Report correctly?(18 Jun 2003 06am:30:23)
I Try it with fr demo in fr2.5,the first page is ok,but from second page,it can
not print correctly? but in fr2.4,it can print correctly.

--------------------------------------------------------------------------------

Alexander (23 Jun 2003 07:43:48)
This bug fixed.do
wnload trial version from
http://www.fastreport.org/files/fr250d.exe again.

 
没用,bug在 fr_class 中,得去找注册版的要新的fr_class 才行了
 
没人理睬,自己解决了
procedure TfrPage.DrawPageFooters;
//var
// sadj : integer;
begin
CurColumn := 0;
// sadj:=XAdjust;
XAdjust := LeftMargin;
if (PageNo <> 0) or ((Bands[btPageFooter].Flags and flBandOnFirstPage) <> 0) then
while PageNo < MasterReport.EMFPages.Countdo
begin
if not (Append and WasPF) then
begin
if (CurReport <> nil) and Assigned(CurReport.FOnEndPage) then
CurReport.FOnEndPage(PageNo);
if (MasterReport <> CurReport) and (MasterReport <> nil) and
Assigned(MasterReport.FOnEndPage) then
MasterReport.FOnEndPage(PageNo);
ShowBand(Bands[btPageFooter]);
end;
Inc(PageNo);
end;
PageNo := MasterReport.EMFPages.Count;
// XAdjust:=sadj;
end;
 
屏蔽掉那几句也没用啊,是不是要重新编译一下?
 
肯定可以了,我都用了好几个报表了
当然要重新编译
 
ccdos,你到底解决什么,我怎么什么也看不出,我也遇到此问题,
我的qq 33141124 希望你和我讨论
你的网址也进不去什么呀,
 
使用一下新的注册中文版的2.5把,2ccc上有
 
ljlljl-79 老兄,你遇到此问题了吗,我faint,
 
我看了最新出来的 2.51 关于此问题的处理就是我前面自己解决的方案一样的
 
ccdos,问一下,怎样定义FR的纸张,用代码?
 
不好意思,我也困惑于此问题,
我现在的方式都是在系统中自定义好纸张,在FR中使用
 
后退
顶部