Crystal Reports - 两种打印格式

发布于 2024-10-24 04:17:55 字数 90 浏览 3 评论 0原文

我有两种方式打印报告:PDF 格式或信头纸格式。

是否可以在报告中进行自定义,以便在 PDF 中我的标题中有一个徽标,而在信头上我的标题中没有该徽标?

I have two ways to print a report, into a PDF or on letterhead.

Is it possible to have in a report a customization so that in the PDF I have a logo in the header, and on the letterhead I don't have that logo in the header?

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

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

发布评论

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

评论(1

清风夜微凉 2024-10-31 04:17:55

您可以将带有布尔值的参数添加到报告中。像 IsPDF 这样的东西,然后在标题中单击徽标的“格式图形”(假设它是图像),然后选择“抑制”复选框对面的 X2。

在此处输入图像描述

从那里您可以编写代码,在 IsPDF 参数为 False 时抑制图形,而在IsPDF 为 True。

IF {?IsPDF} = True Then
False

编辑:写完后,我想我实际上会将布尔参数设置为 IsLetterHead,这样当它为 True 时,它​​将与 Suppress 中的 True 一致。换句话说

IF {?IsLetterHead} = True Then
True

You could add a parameter with a boolean to the report. Something like IsPDF and then in the header Click on the Format Graphic (assuming it is an image) of the logo and then choose the X2 across from the Suppress checkbox.

enter image description here

From there you can write code that will suppress the graphic when the IsPDF paramater is False and not suppress when the IsPDF is True.

IF {?IsPDF} = True Then
False

Edit: After writing this out I think I would actually make the boolean parameter be IsLetterHead so that when it was True it would be consistent with the True in the Suppress. In other words

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