Hi Dell,
Yes it does but the point is defining the type by using this:
Convert.ToDateTime()
So you should be using that property for any type:
rpt.SetParameterValue("pcname", Convert.ToDateTime(parmPCname));
rpt.SetParameterValue("pcname", Convert.ToDecimal(parmPCname));
rpt.SetParameterValue("pcname", Convert.ToInt32(parmPCname));
rpt.SetParameterValue("pcname", Convert.ToString(parmPCname));
Hope that helps?
Don