Search code examples
visual-studio-2008reporting-servicesrdl

Is there a way to change the NULL text of a NULLABLE report parameter to a CUSTOM TEXT


Is there a way to change the NULL texts of a NULLABLE report parameter to CUSTOM TEXTS like is shown in folloing image .... ?

enter image description here

I have read this question https://stackoverflow.com/questions/17232432/ssrs-2005-how-to-change-the-label-of-the-null-checkbox-of-a-datepicker

And the proposed solution in this forum http://social.msdn.microsoft.com/Forums/sqlserver/en-US/879b0015-b053-40de-b97d-620fc283e542/how-to-change-null-label-of-the-checkbox-in-the-parameter-area

So I decided to create a Boolean Parameter called "Cualquier Hora Inicio" but is being rendered as two RADIO BUTTONS instead of ONE CHECKBOX (false = unchecked, true = checked)

enter image description here

If the NULL text cannot be changed please let me know how can I force the Boolean parameter to be render a a checkbox and also to be located to the right and at the same height as the Hora Inicio parameter where is supposed to be


Solution

  • Yes, it is possible. You can create a custom assembly that overrides functionality of resources used by the ReportViewer control. You have to specify that your custom assembly be loaded instead of the default.

    Here is an article about implementing the IResource interface.