0
votes

I have developed the asp.net application in c# and I am using Crystal Reports 13.

I have requirement like some report I have pre-printed page. So when view the report it display the reports include the logo and border but when I click on print button it suppress the logo and border which are already in the pre-printed paper.

1
Just for clarification: You do not want the logo and border printed?campagnolo_1
yes i need to suppress or hide the logo and borderHiren

1 Answers

0
votes

It's not the most elegant way, but the only way I have been able to make it work:

  1. Create a paramter (call it PrintOption) and set the default value to "False".

  2. For every field you want to suppress, right-click on the field and click "Format Field"

  3. In the Common tab for the field enter a suppression formula ("x+2" symbol)

  4. Enter {?PrintOption} = True and save.

Now when you run the report it will show logo's and borders and when you are about to print just change the parameter to True and it will suppress your logos and borders.