How to Hide parameter panel?

Stimulsoft Reports.NET discussion
Post Reply
yopy_yogie
Posts: 1
Joined: Thu Sep 29, 2011 12:05 am
Location: BDG

How to Hide parameter panel?

Post 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
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

How to Hide parameter panel?

Post 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.
Post Reply