关于QRMemo控件不能保持文本原有格式求助(10分)

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

terrace

Unregistered / Unconfirmed
GUEST, unregistred user!
使用QRMemo从文本文件中导入文本后格式变了,而且将该文本文件内容直接拷贝到QRMemo控件中也是如此,即使在QRMemo控件中调整也无法将某些文本垂直对齐。有办法可以保持文本文件中内容格式不变吗?
 
楼上朋友:
我是做报表,在Delphi的QReport控件栏里只有QRMemo,QRRichText等,没有TRichEdit,
该怎么办呢?
 
这个难题没人会吗?
 
设置autostrecth为true
设置autosize为false
 
楼上朋友:
我试过了,还是不行。
 
procedure set_reportvalue(rm:TRmReport;name,str:String);
var
oo:TRMView;
begin
//给报表控件赋值
oo := rm.FindObject(name);
if oo is TRMMemoView then
(oo as TRMMemoView).Memo.Text := str;
end;
 
应该能对齐,再查查文本中的格式。
 
后退
顶部