Page 1 of 1

How to Hide parameter panel?

Posted: Thu Sep 29, 2011 12:09 am
by yopy_yogie

I have a parameter on the report which i used to filter query.
How to hide parameter panel from the viewer ? since i want to set the parameter value on the code.
User is not allowed to set the parameter from the viewer.

I am using 2011.1 release.

Best Regards

How to Hide parameter panel?

Posted: Fri Sep 30, 2011 1:38 am
by HighAley
Hello.
yopy_yogie wrote: I have a parameter on the report which i used to filter query.
How to hide parameter panel from the viewer ? since i want to set the parameter value on the code.
User is not allowed to set the parameter from the viewer.

I am using 2011.1 release.
Please, try to edit variable and disable Request From User property.
Or you can do it by code.

Code: Select all

rep.Dictionary.Variables["Variable1"].RequestFromUser = false;
Thank you.