Donate

Printing Checkboxes In Crystal Reports.NET

Source: Crystal Reports

Printing Checkboxes In Crystal Reports.NET
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 

Comments

Donate

Popular Posts From This Blog

WPF CRUD Application Using DataGrid, MVVM Pattern, Entity Framework, And C#.NET

How To Insert Or Add Emojis In Microsoft Teams Status Message

Bootstrap Modal In ASP.NET MVC With CRUD Operations