为什么 Delphi 中的 Fast Report VCL 在编辑变量时会引发堆栈溢出异常?
我正在使用 Delphi 5 和 Fast Report 4 制作一个报表应用程序。我在设计时在 MyReport.f3 中定义了一个变量“ReportTitle”,并在运行时为其分配了一个值。为什么我的代码引发 EStackOverflow 异常?
这是代码示例
frxrprt1.LoadFromFile('c:\MyReport.fr3');
frxrprt1.Variables['ReportTitle'] := 'Sales Summary Report';
frxrprt1.ShowReport;
I am using Delphi 5 and Fast Report 4 to make a report application. I have defined a variable "ReportTitle" in MyReport.f3 at design time and I assigned a value for it at runtime. Why is my code raising an EStackOverflow Exception?
Here is the code sample
frxrprt1.LoadFromFile('c:\MyReport.fr3');
frxrprt1.Variables['ReportTitle'] := 'Sales Summary Report';
frxrprt1.ShowReport;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用这个:
“变量”值实际上被视为成熟的表达式;如果你希望它是一个字符串,它需要是一个标准的帕斯卡常量,使用单引号;由于您是通过 pascal 代码执行此操作,因此需要通过双引号来引用引号。
您可能会遇到堆栈溢出,因为快速报告的脚本引擎正在尝试理解您编写的内容并遇到递归问题。
Use this:
The "variable" values are actually treated as full-fledged expressions; If you want it to be a string, it needs to be a standard pascal constant, using single-tick quoting; And since you're doing that from pascal code, you need to quote the quotes by double-quoting.
You probably get the stack overflow because fast report's scripting engine is trying to make sense of whatever you wrote and runs into a recursive problem.
或者你可以使用另一种方式。
函数 QuotedStr 返回字符串 S,用单引号引起来。这意味着 S 包含在单引号中,并且 S 中的每个单引号都是双引号。它相当于调用 AnsiQuotedStr(s, '''')。
Or you can use another way.
The function QuotedStr returns the string S, quoted with single quotes. This means that S is enclosed in single quotes, and every single quote in S is doubled. It is equivalent to a call to AnsiQuotedStr(s, '''').