Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I would like to display a checkbox in an RDLC report indicated that the value
from the database (true/false). There is no checkbox available from the
report designer.
Do anyone have any ideas on how best to solve this problem?

Thanks in advance
Posted
Updated 16-Sep-22 18:56pm

(change the textbox’s font to Wingdings2)
=IIf( Fields!MyBooleanField.Value, Chr(82), Chr(163))
 
Share this answer
 
Comments
offlineman 26-Nov-13 13:16pm    
Era un problema ricorrente. Grazie mille!
neha427 27-Jul-11 8:23am    
Hi Prerak,

I forgot to change texbox font.It works.

Thank You.
Prerak Patel 27-Jul-11 12:09pm    
You are welcome
thatraja 27-Jul-11 19:21pm    
Spot on. 5!
Ward Gannon 3-Aug-17 10:54am    
Nice solve for the problem, works great.
(change the textbox’s font to Wingdings2)
=IIf( Fields!MyBooleanField.Value, Chr(82), Chr(163))

thanks for this, its work
 
Share this answer
 
Comments
CHill60 18-Sep-22 11:56am    
Don't post comments as solutions. Use the "Have a Question or Comment?" next to the post you eat to comment on
=IIF(Field!BooleanField.Value,Chr(80),"") for displaying tick mark for true ...in the report

and dont forget to set the font for wingdings
 
Share this answer
 
Comments
Richard C Bishop 6-May-13 14:33pm    
This question is two years old and already has an accepted answer. Becareful to notice the date and solutions in the future.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900