One of the many quirks of Reporting Services we\'ve run across is the complete and utter lack of a CheckBox control or even something remotely similar.
We have a form th
Another way to do thisd is go to "Placeholder properties" of TextBox and check Html - Interpret HTML tag as styles
Then in the Value
- Expression
put this line of code for checked:
="" & Chr(81) &"" & "some other text"
Or this code sample for unchecked:
="" & Chr(163) &"" & "some other text"
This way you can have checkbox and text in the same textbox.
Later edit:
If you are having problem displaying Wingdings 2
on Azure, then use Wingdings
.
Apparently it works.
="" & Chr(253) &"" & "some other text"
Or this code sample for unchecked:
="" & Chr(168) &"" & "some other text"