对FASTREPORT表中的一MEMO赋值(20分)

  • 主题发起人 主题发起人 gr_dg
  • 开始时间 开始时间
G

gr_dg

Unregistered / Unconfirmed
GUEST, unregistred user!
请问我怎样在程序中将“AAAAA”赋到MEMO1上
 
var
t: TfrMemoView;
begin
t := TfrMemoView(frReport1.FindObject(‘Memo1‘));
if t <> nil then
t.Memo.Text := ‘FastReport‘;
end;
 
在FASTREPORT表中先定义一个变量,在程序中对这个变量赋值即可。
 
后退
顶部