很急,有关fastreport换行得问题!100分求救!!!!!(100分)

  • 主题发起人 主题发起人 taiwan999
  • 开始时间 开始时间
T

taiwan999

Unregistered / Unconfirmed
GUEST, unregistred user!
我使用了dbgrid和fastreport,在打印的时候,当数据超过memo的长度时,我需要另起一格子打印(不是在同一个格子中换行),请各位大虾指教!!!
 
memo有一个可以自动换行的属性,叫什么来者 WordWrap :=True;
好像是的。
 
换行的话,你如果没有汉字话,就可以这样来试一下
只要设置一下属性就可以了!
band:stretched=true;
memo:wordbreak=false;wordwrap=true
如果有中文乱码的话
解决中文换行乱码 ,在fr_class 查找 WrapLine 过程,替换为下面的过程,就
可以解决。
procedure WrapLine(const s: wideString);
//解决中文换行乱码 ZWZ
var
i, cur, beg, last, LoopPos: Integer;
WasBreak, CRLF: Boolean;
begin
CRLF := False;
LoopPos := 0;
for i := 1 to Length(s)do
if (s =#10) or (s=#13) then
// if s in [#10, #13] then
begin
CRLF := True;
break;
end;
last := 1;
beg := 1;
if not CRLF and ((Length(s) 〈= 1) or (WCanvas.TextWidth(s) 〈= maxwidth)) then
OutLine(s + #1)
else
begin
cur := 1;
while cur 〈= Length(s)do
begin
if (s[cur] =#10) or (s[cur]=#13) then
// if s[cur] in [#10, #13] then
begin
OutLine(Copy(s, beg, cur - beg) + #1);
while (cur 〈 Length(s)) and
((s[cur] =#10) or (s[cur]=#13))
// (s[cur] in [#10, #13])
do
Inc(cur);
beg := cur;
last := beg;
if (s[cur] =#10) or (s[cur]=#13) then
// if s[cur] in [#13, #10] then
Exit else
continue;
end;
if s[cur] 〈> ' ' then
if WCanvas.TextWidth(Copy(s, beg, cur - beg + 1)) > maxwidth then
begin
WasBreak := False;
if (Flags and flWordBreak) 〈> 0 then
begin
i := cur;
while (i 〈= Length(s)) and
not ((s = ' ') or (s = ' ') or (s = '.') or (s = ',') or(s = '-'))do
//not (s in spaces)do
Inc(i);
b := BreakWord(Copy(s, last + 1, i - last - 1));
if Length(b) > 0 then
begin
i := 1;
cur := last;
while (i 〈= Length(b)) and
(WCanvas.TextWidth(Copy(s, beg, last - beg + 1 + Ord(b)) + '-') 〈= maxwidth)do
begin
WasBreak := True;
cur := last + Ord(b);
Inc(i);
end;
last := cur;
end;
end
else
if last = beg then
last := cur;
if WasBreak then
OutLine(Copy(s, beg, last - beg + 1) + '-')
else
if s[last] = ' ' then
OutLine(Copy(s, beg, last - beg)) else
begin
OutLine(Copy(s, beg, last - beg));
Dec(last);
end;
if ((Flags and flWordBreak) 〈> 0) and not WasBreak and (last = cur - 1) then
if LoopPos = cur then
begin
beg := cur + 1;
cur := Length(s);
break;
end
else
LoopPos := cur;
beg := last + 1;
last := beg;
end;
// if s[cur] in spaces then
last := cur;
if s[cur] = ' ' then
last := cur;
Inc(cur);
end;
if beg 〈> cur then
OutLine(Copy(s, beg, cur - beg + 1) + #1);
end;
end;
 
用2.5版的不会有乱码的
 
不是在同一格中换行,而是重新换一个新格子。
 
怎么我找不到fr_class啊
 

Similar threads

回复
0
查看
1K
不得闲
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部