Parameter Input Area
Parameter Input Area
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
Hello.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
Re: Parameter Input Area
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
Hello.
Did you remove Request From User property of the Variable?
Thank you.
Did you remove Request From User property of the Variable?
Thank you.
Re: Parameter Input Area
I'm not sure I understand what you mean?
Re: Parameter Input Area
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
Hello.
You could do it with next code:
Thank you.
You could do it with next code:
Code: Select all
report.Dictionary.Variables["Variable1"].RequestFromUser = false;