Hi,
I need to show the checkbox in the report column with bind database data. If database have the yes value then checkbox will show the right mark otherwise not. but checkbox is not coming in the report.
I need help .Its urgent.
Regards
Vikas
checkbox in database bind is not show
-
- Posts: 1
- Joined: Sun Aug 01, 2010 4:10 am
- Location: UK
checkbox in database bind is not show
Hi Vikas,
You could set the font of the Text component to Wingdings and then enter the following as the expression in the Text Editor:
In the example I have used a boolean variable, but you could just as easily use a column from your data dictionary as the check.
Chris Bray
You could set the font of the Text component to Wingdings and then enter the following as the expression in the Text Editor:
Code: Select all
{BoolVariable1 ? "þ" : "p"}
Chris Bray