User1803939084 posted
Hi
We have a web form that allows users to select from a list of employees. The employee ids are then passed as a parameter to Crystal Report as follows:
Report.SetParameterValue("@EmpIDs", employees)
The employees list can be up to 600 IDs. Crystal report then uses the @EmpID parameter to call a storedProc, passing in the employees we want to query. We only display 4 employees at a time. Every time the user selects another page, the
same query is run again on SQL Server, grabbing all 600 employees again. How can I tell CR to only grab the next 4 employees?
Tks