Crystal Reports - 两种打印格式
我有两种方式打印报告: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将带有布尔值的参数添加到报告中。像 IsPDF 这样的东西,然后在标题中单击徽标的“格式图形”(假设它是图像),然后选择“抑制”复选框对面的 X2。
从那里您可以编写代码,在 IsPDF 参数为 False 时抑制图形,而在IsPDF 为 True。
编辑:写完后,我想我实际上会将布尔参数设置为 IsLetterHead,这样当它为 True 时,它将与 Suppress 中的 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.
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.
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