Page 1 of 1
Parameter Input Area
Posted: Tue Aug 14, 2012 9:07 am
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?
Re: Parameter Input Area
Posted: Tue Aug 14, 2012 1:21 pm
by HighAley
Hello.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
Re: Parameter Input Area
Posted: Tue Aug 14, 2012 1:43 pm
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).
Re: Parameter Input Area
Posted: Wed Aug 15, 2012 7:36 am
by HighAley
Hello.
Did you remove Request From User property of the Variable?
Thank you.
Re: Parameter Input Area
Posted: Wed Aug 15, 2012 8:44 am
by lloydk
I'm not sure I understand what you mean?
Re: Parameter Input Area
Posted: Wed Aug 15, 2012 10:05 am
by lloydk
Actually I figured out what you mean. Is there any way of doing this in code rather than through the report designer?
Re: Parameter Input Area
Posted: Wed Aug 15, 2012 10:58 am
by HighAley
Hello.
You could do it with next code:
Code: Select all
report.Dictionary.Variables["Variable1"].RequestFromUser = false;
Thank you.