Hi,
I am currently having trouble passing "all" multi value parameter to my report
Below is my VB code and i am also attaching my report configuration
param1.Name = "parSvcType"
param1.Type = GetType(System.String)
param1.MultiValue = True
param1.Value = New String() {""}
param1.Visible = False
report.Parameters.Add(param1)
report.RequestParameters = False
ASPxDocumentViewer1.Report = report
ASPxDocumentViewer1.ReportTypeName = "rep_bycategory"
If user did not select any category i would like it to show all the data in the database. How can I achieve this ?
Thanks again for the assistance.
Rgds,
Andrew