How do I get the user's selected parameter values from the HTML Viewer in
order to pass the USER'S SELECTED parameter's in the render method.
Code.GetReportParameters only gets me the defined parameters, but does not
retrieve the user's selected parameter's on the HTML Viewer.
mSQLReportServer.GetReportParameters(mstrpath & "/" & mstrReportName,
Nothing, False, Nothing, Nothing)
I need the parameters to pass through to the Render function below. The
report expects three parameter's.
Dim ReportData As Byte() = mSQLReportServer.Render(mstrpath & "/" &
mstrReportName, "Exel", Nothing, Nothing, ReportParameterValues, Nothing,
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)
--
Erol