Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passing Parameters To Report
Message
General information
Forum:
ASP.NET
Category:
Reporting
Miscellaneous
Thread ID:
01451546
Message ID:
01451551
Views:
36
>Kevin, I don't know if this will help, but here is how I handle parms...
>
>oReport.SetParameterValue("ShowDetails", lShow);
>
>(where "ShowDetails" is a parameter)

This works, although I don't see why as it's essentially the same as what I had before:
ParameterFields Fields = _ReportInfo.Report.ParameterFields;
ParameterField pRecordId = Fields[0];
ParameterDiscreteValue ParamValue = new ParameterDiscreteValue();
ParamValue.Value = 9162;
pRecordId.CurrentValues.Add(ParamValue);

ReportSource = _ReportInfo.Report;
Refresh(); 
}
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Previous
Reply
Map
View

Click here to load this message in the networking platform