reportbuild及fastreport如何从dephi中取到变量或控件值(100分)

  • 主题发起人 主题发起人 lblblb
  • 开始时间 开始时间
L

lblblb

Unregistered / Unconfirmed
GUEST, unregistred user!
reportbuild及fastreport的标题或有些文本需用户在dephi中用文本框录入,
dephi中控件的值如何传入reportbuild及fastreport???
最好不要通过数据库控件!!!
 
frReport1.FindObject('Memo1').Memo.Text:=Edit1.Text;
frReport1.ShowReport;
 
FasrReport里有个"数据字典".在里面可以定义一些变量,
然后在程序是赋值,如:
frReport1.Dictionary.Variables['变量1'] :=Edit1.Text;
 
reportbuild也可以直接赋值
如在打印窗体form1,中有个ppreport1:tppreport,ppreport1中有个pplabel1
则可直接为
form1.pplabel1.caption:=edit1.text;
 
to pjxy,
多谢!
能否在告诉我
表格线不管StretchWithParent等属性如何设置,总是无法连接在一起?
 
后退
顶部