Posts

Showing posts with the label Crystal Reports

Donate

Printing Checkboxes In Crystal Reports.NET

Image
Source: Crystal Reports To display a checkbox on the report, create a new formula field and insert the following formula. If {Field} = True Then 'Display the checkbox of your choice here Formula = Chr( 254 ) Else 'Display empty checkbox Formula = Chr( 168 ) End If

Set Top Property Of Text And Field Object Of Crystal Reports During Runtime

I have encountered a scenario when creating crystal reports for a specific customer. In my reports, I have four controls. 1. Comments (Text Object) and Comments (Field object )w/ top properties of 3465. 2. Recommendations (Text Object) and Recommendations (Field object ) w/ top properties of 4505. Here's what i need to do. 1 2 3 if ((recommendations field object ! = null) && (comments field object == null))) 2 : If true , set top properties of Recommendations Text 3 : object and commendations Field object to 3465. Solution in VBForums. Greg

Unable To Print Reports Using Samsung Printers and Crystal Reports In ASP.NET Web Forms

I encountered lately an error when printing a report from a deployed asp.net website. I installed correctly the printer software/drivers. The printer used was Samsung. Solution: In Control Panel (Printers and Faxes), add asp.net user account to the default printer.

Donate