如何在 Crystal Reports XI 中动态加载图像
您好,我正在从 .NET 应用程序运行 Crystal Reports XI。我将参数名称作为公司传递,报告应显示取决于公司的徽标。
如何在水晶报表中动态加载图像。(如何编写公式从特定目录加载图像)
HI I am running a Crystal Reports XI from .NET application. I am passing parameter name as company and report should display the logo depends on company.
How we can load the image dynamically in crystal report.(how to write formula to load the image from specific directory)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Crystal Reports XI 的一个简单解决方案是将图像的 URL 作为参数传递给报表,然后将其用作图片的图形位置。
运行报告并相应地设置 imageUrl 的值。
或者,您可以在公式字段中使用 CASE 语句来达到相同的效果;只需更改图像的条件公式字段以引用公式字段而不是参数字段。
A simple solution for Crystal Reports XI is to pass the image's URL as a parameter to the report, then use it as the picture's graphic location.
Run the report and set the imageUrl's value accordingly.
Alternately, you could use a CASE statement in a formula field for the same effect; simply change the image's conditional-formula field to reference the formula field instead of the parameter field.
我认为你不能。我发现做到这一点的唯一方法是将每个图像嵌入到报告的不同部分中,并根据公司参数的值有条件地抑制该部分。
I don't think you can. The only way I've found to do that is to embed each image in a different section of the report and conditionally suppressing the section depending on the company parameter's value.