I built an report using rdlc now i want to show an checkbox clicked into report when field is true.please send me an reference link how to show the checkbox into rdlc report.
The easiest solution is to put an "X" in a the text box if the bit is 1 -- most users are used to this when viewing a true report (versus an interactive web page). If you feel you really need a checkmark, you can use a font like wingdings that has this
character. Then just use an IIF statement to look at the value and set it if the bit is 1.
Ashutosh Pathak
Blog: http://catchcode.blogspot.com Please mark it as answer if it helps, as clicking on the button can save time of others :)
MCP,MCAD,MCSD,MCTS
Marked as answer by vikas227 on Dec 26, 2012 08:50 AM
vikas227
Member
623 Points
801 Posts
how to show check box into rdlc report
Dec 20, 2012 11:07 AM|LINK
I built an report using rdlc now i want to show an checkbox clicked into report when field is true.please send me an reference link how to show the checkbox into rdlc report.
Thanks
Mudasir.Khan
All-Star
15346 Points
3142 Posts
Re: how to show check box into rdlc report
Dec 20, 2012 02:00 PM|LINK
The easiest solution is to put an "X" in a the text box if the bit is 1 -- most users are used to this when viewing a true report (versus an interactive web page). If you feel you really need a checkmark, you can use a font like wingdings that has this character. Then just use an IIF statement to look at the value and set it if the bit is 1.
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Studio_.NET_2005/Q_23343606.html
Ashutosh Pat...
Contributor
5737 Points
1105 Posts
Re: how to show check box into rdlc report
Dec 26, 2012 08:21 AM|LINK
There is no such control available by Microsoft for SSRS support, but below is the workarround that you can use for achieving the same:
http://stackoverflow.com/questions/259390/how-do-i-best-display-checkboxes-in-sql-server-reporting-services
Blog: http://catchcode.blogspot.com
Please mark it as answer if it helps, as clicking on the button can save time of others :)
MCP,MCAD,MCSD,MCTS