Shane_SixOne
ISP
I have a parameter in a RDLC report named "allocated_jobs"
It has no Available Values.
It has 1 Specify Values: RTrim(Allocated = "True")
ie; Only rows with field name Allocated and it's contents equal "True" are to be in the report.
Code:
Me.JobsDataReportViewer.LocalReport.ReportEmbeddedResource = "Data_Reporting.JobsList.rdlc" 'Data_Reporting is the stored report path in my.settings
Dim param_allocatedjobs As New ReportParameter("allocated_jobs")
Dim reportparameters() As ReportParameter = {param_allocatedjobs}
Me.JobsDataReportViewer.LocalReport.SetParameters(reportparameters)
Me.JobsDataReportViewer.RefreshReport()
The report runs fine, no errors, but without the desired return of the parameter.
All help welcome.