1. Create an array of parameters
ReportParameter[] parameters = new ReportParameter[1];
2. Insert your parameter in the array
parameters[0] = new ReportParameter("ParamDPId",1);
3. Add the array to your report
lr.SetParameters(parameters);
where lr is an instance of LocalReport()

Signature
.seb
http://sgomez.blogspot.com
> >From a .Net application can pass the parameters to a SQL 2005 report
> from within code without the parameter options being visible within the
> SQL report viewer component?