哪里有quickreport源代码的下载?TQRDBText如何自动换行? (11分)

  • 主题发起人 主题发起人 Michaelyfj
  • 开始时间 开始时间
M

Michaelyfj

Unregistered / Unconfirmed
GUEST, unregistred user!
哪里有quickreport源代码的下载?
TQRDBText如何自动换行?
如何把quickrpt中打印时显示进度框中的cancel按钮标题改为中文?
 
www.51delphi.com就有下載
在OnPrint事件里面加入
procedure QRLabel2Print(sender: TObject;
var Value: String);
var
iLen : integer;
strSource, strTemp : string;
begin
if Length(Value)<=TCustomControl(Sender).Width/7 then
exit;
strSource:=Value;
Value:='';
while truedo
begin
iLen:=1;
while iLen<TCustomControl(Sender).Width/7do
begin
if ord(strSource[iLen])>126 then
inc(iLen,2)
else
inc(iLen);
end;
dec(iLen);
if ord(strSource[iLen-1])>126 then
dec(iLen,2);
strTemp:=Copy(strSource,1,iLen);
if Value='' then
Value:=Trim(strTemp)
else
begin
Value:=Trim(Value+#13+strTemp);
end;
Delete(strSource,1,iLen);
if Length(strSource)<=TCustomControl(Sender).Width/7 then
begin
Value:=Trim(Value+#13+strSource);
exit;
end;
end;
end;

修改源文件或是自己設置一下
 
to stuwe:
“www.51delphi.com就有下載”能告诉详细地址吗?我转了一圈都没有找到
还有:哪里有quickreport3.06的下载
 
ftp://202.117.210.28/file/QReport4.rar
已經是4.02了
 
后退
顶部