为什么 Delphi 中的 Fast Report VCL 在编辑变量时会引发堆栈溢出异常?

发布于 2024-11-06 09:54:19 字数 303 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

濫情▎り 2024-11-13 09:54:19

使用这个:

frxrprt1.Variables['ReportTitle'] := '''Sales Summary Report''';

“变量”值实际上被视为成熟的表达式;如果你希望它是一个字符串,它需要是一个标准的帕斯卡常量,使用单引号;由于您是通过 pascal 代码执行此操作,因此需要通过双引号来引用引号。

您可能会遇到堆栈溢出,因为快速报告的脚本引擎正在尝试理解您编写的内容并遇到递归问题。

Use this:

frxrprt1.Variables['ReportTitle'] := '''Sales Summary Report''';

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.

月朦胧 2024-11-13 09:54:19

或者你可以使用另一种方式。

  frxrprt1.Variables['ReportTitle'] := QuotedStr('Sales Summary Report');

函数 QuotedStr 返回字符串 S,用单引号引起来。这意味着 S 包含在单引号中,并且 S 中的每个单引号都是双引号。它相当于调用 AnsiQuotedStr(s, '''')。

Or you can use another way.

  frxrprt1.Variables['ReportTitle'] := QuotedStr('Sales Summary Report');

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, '''').

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文