vote up 3 vote down star
1

How do we set the parameters of .Net's reportviewer?

flag

1 Answer

vote up 3 vote down check
List<ReportParameter> paramList = new List<ReportParameter>();
paramList.Add(new ReportParameter("ClientName", clientName, false)); 
TheReportObject.LocalReport.SetParameters(paramList);

And you have to make sure you define the same named parameters inside the report definition as well.

link|flag
Thanks a lot for the tip.! – jeffreyandlilia Mar 12 at 6:01
Note that sending false to the ReportParameter constructor will hide the parameter from the user. If you don't intend to hide the parameter, there's an overload that doesn't take that boolean (or send true). – Liron Yahdav May 20 at 4:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.