How to Hide parameter panel?
-
- Posts: 1
- Joined: Thu Sep 29, 2011 12:05 am
- Location: BDG
How to Hide parameter panel?
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?
Hello.
Or you can do it by code.
Thank you.
Please, try to edit variable and disable Request From User property.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.
Or you can do it by code.
Code: Select all
rep.Dictionary.Variables["Variable1"].RequestFromUser = false;