How do I best display CheckBoxes in SQL Server Reporting Services?

前端 未结 8 463
北荒
北荒 2021-02-01 15:37

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

8条回答
  •  不思量自难忘°
    2021-02-01 16:07

    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"
    

提交回复
热议问题