Parameter Input Area

Stimulsoft Reports.WEB discussion
Post Reply
lloydk
Posts: 15
Joined: Fri Aug 10, 2012 2:41 pm

Parameter Input Area

Post by lloydk »

How do I hide the parameter input area? I've managed to hide the button but I'd like to hide the parameter entry area and manually supply all the parameters to the report?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Parameter Input Area

Post by HighAley »

Hello.

Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?

Thank you.
lloydk
Posts: 15
Joined: Fri Aug 10, 2012 2:41 pm

Re: Parameter Input Area

Post by lloydk »

About my report is a box with all the parameters I can supply to the report, for example start date and end date. What I want to do is hide it so the user never sees it (we have our own controls to pass this information through to the report).
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Parameter Input Area

Post by HighAley »

Hello.

Did you remove Request From User property of the Variable?

Thank you.
lloydk
Posts: 15
Joined: Fri Aug 10, 2012 2:41 pm

Re: Parameter Input Area

Post by lloydk »

I'm not sure I understand what you mean?
lloydk
Posts: 15
Joined: Fri Aug 10, 2012 2:41 pm

Re: Parameter Input Area

Post by lloydk »

Actually I figured out what you mean. Is there any way of doing this in code rather than through the report designer?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Parameter Input Area

Post by HighAley »

Hello.

You could do it with next code:

Code: Select all

report.Dictionary.Variables["Variable1"].RequestFromUser = false;
Thank you.
Post Reply