J
jklmsoho
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure tform1.makeresult(thestr:string);
var i,j,k,strl,tmpl:integer;
str,str1,str2,str3,str4:string;
begin
str:=thestr;
strl:=length(str);
if strl>80 then insert(' ',str,78);
if strl>160 then insert(' ',str,158);
if strl>240 then insert(' ',str,238);
tmpl:=strl div 80;
case tmpl of
1:begin
str1:=copy(str,1,80);
resultfm.re.Lines.Add(' '+str1);
str2:=copy(str,81,strl-80);
resultfm.re.lines.add(' '+str2);
end;
2:begin
str1:=copy(str,1,80);
resultfm.re.Lines.Add(' '+str1);
str2:=copy(str,81,160);
resultfm.re.lines.add(' '+str2);
str3:=copy(str,161,strl-160);
resultfm.re.lines.add(' '+str3);
end;
3:begin
str1:=copy(str,1,80);
resultfm.re.Lines.Add(' '+str1);
str2:=copy(str,81,160);
resultfm.re.lines.add(' '+str2);
str3:=copy(str,161,240);
resultfm.re.lines.add(' '+str3);
str4:=copy(str,241,strl-240);
resultfm.re.lines.add(' '+str4);
end;
end;
end;
var i,j,k,strl,tmpl:integer;
str,str1,str2,str3,str4:string;
begin
str:=thestr;
strl:=length(str);
if strl>80 then insert(' ',str,78);
if strl>160 then insert(' ',str,158);
if strl>240 then insert(' ',str,238);
tmpl:=strl div 80;
case tmpl of
1:begin
str1:=copy(str,1,80);
resultfm.re.Lines.Add(' '+str1);
str2:=copy(str,81,strl-80);
resultfm.re.lines.add(' '+str2);
end;
2:begin
str1:=copy(str,1,80);
resultfm.re.Lines.Add(' '+str1);
str2:=copy(str,81,160);
resultfm.re.lines.add(' '+str2);
str3:=copy(str,161,strl-160);
resultfm.re.lines.add(' '+str3);
end;
3:begin
str1:=copy(str,1,80);
resultfm.re.Lines.Add(' '+str1);
str2:=copy(str,81,160);
resultfm.re.lines.add(' '+str2);
str3:=copy(str,161,240);
resultfm.re.lines.add(' '+str3);
str4:=copy(str,241,strl-240);
resultfm.re.lines.add(' '+str4);
end;
end;
end;