如何在加载渲染和保存的 Stimulsoft 报告后添加变量值?

发布于 2024-11-29 22:23:52 字数 226 浏览 4 评论 0原文

我正在使用 Stimulsoft Reporting for WPF。我已经保存了渲染的报告(以二进制格式保存在数据库中)。当我加载报告时,我可以在 Stimulsoft 报告查看器中查看它。

我想为变量注册一个新值(已经渲染)。这可能吗?

如果我尝试使用 report["variableName"]="xxxxx" 它不会执行任何操作。 如果我(重新)渲染报告,它就会变成空白。

想法?

I'm using Stimulsoft Reporting for WPF. I have saved a rendered report (in the database in binary format). When I'm loading the report I can view it in Stimulsoft Report Viewer.

I would like to register a new value for a variable (which was already rendered). Is this posible?

If I'm trying with report["variableName"]="xxxxx" it doesn't do anything.
If I (re)render the report it becomes blank.

Ideeas ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

遗心遗梦遗幸福 2024-12-06 22:23:52

您可以使用以下代码来访问变量。

如果报告已编译:

report["variableName"]="xxxxx";

如果报告未编译:

report.Dictionary.Variables["variableName"].Value="xxxxx";

You can use the following code for access to variable.

If report compiled:

report["variableName"]="xxxxx";

If report not compiled:

report.Dictionary.Variables["variableName"].Value="xxxxx";
烟若柳尘 2024-12-06 22:23:52

编译报告时,您可以通过report.CompiledReport.Variables[“variableName”] =“xxxxx”访问变量;

when report is compiled you can access variables via report.CompiledReport.Variables["variableName"]="xxxxx";

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