在BCB表单中将变量传送到FR报表中打印(50分)

  • 主题发起人 主题发起人 hzyhlw
  • 开始时间 开始时间
H

hzyhlw

Unregistered / Unconfirmed
GUEST, unregistred user!
在DELPHI中可使用全局对象frVariables传送变量:
窗体上加上一个frReport1控件
TfrmMain.FlatButton12Click(Sender: TObject);
begin
frVariables['thisanjuan'] :=trim(Edit1.Text)
end;
双击frReport1控件
加入矩形对象
双击矩形对象,输入内容[thisanjuan]
在BCB中又如何处理?
 
frVariables["thisanjuan"] =trim(Edit1->Text)
frReport->Dictionary->Variables->Variable["thisanjuan"] trim(Edit1->Text)
 
编译了不行,是不是要加入FR_CLASS.PAS和FR_CLASS.HPP到项目中去?
 
如果不行,用BCB自带QR的传送变量吗?
 
后退
顶部