FastReport处理点击字段
问题是如何处理字段上的单击并从主程序调用该过程。
The question is how to handle a click on the field and call the procedure from the main program.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。我不知道您对该字段的含义以及您使用的 FastReport 版本是什么,但我将尝试向您展示与报表对象交互的原理(这可以对预览中的任何报表对象进行)窗户)。但是,
TfrxReport.OnClickObject
事件因 FastReport 版本而异,因此根据您使用的版本,该事件可能会略有不同。下面的例子(用4.12版本编写)与
Memo1
交互,设计时放在报表frxReport1
上的Text对象(TfrxMemoView)
是什么。您需要做的其余工作是在主窗体中编写OnClickObject
事件处理程序的代码。Yes, it is. I don't know what you mean with the field and what version of FastReport you are using, but I'll try to show you the principle of interaction with the report objects (this can be done for any of the report objects in a preview window). However the
TfrxReport.OnClickObject
event differs with FastReport versions so depending on what version you are using this might differ little bit.The following example (written with version 4.12) interacts with
Memo1
, what is theText object (TfrxMemoView)
placed in design time on the reportfrxReport1
. The rest of what you need is to write the code forOnClickObject
event handler in your main form.如果您需要输入其他文本,请尝试一个选项:
或:
If you need put another text, try one option:
or: