nareshreporter
Programmer
Hi,
I have a report that a paramter of number type. Default values for this paramter are numerica values where as each value has been set to description. Now im trying to display the description instead of values. I tried using ShowDescriptionOnly property but it is not working.
var param = reportInterface.ReportParameters.Item(i);
var paramName = param.ParameterName;
if(param.EnableShowDescriptionOnly)
{
Response.Write(param.ShowDescriptionOnly);
}
This code didnt work. I tried using paramName.ShowDescriptionOnly. Still no luck. Can anyone help me out.
Thanks in advance
I have a report that a paramter of number type. Default values for this paramter are numerica values where as each value has been set to description. Now im trying to display the description instead of values. I tried using ShowDescriptionOnly property but it is not working.
var param = reportInterface.ReportParameters.Item(i);
var paramName = param.ParameterName;
if(param.EnableShowDescriptionOnly)
{
Response.Write(param.ShowDescriptionOnly);
}
This code didnt work. I tried using paramName.ShowDescriptionOnly. Still no luck. Can anyone help me out.
Thanks in advance