Basic rundown of current situation:
To facilitate the use of dynamic pick lists/parameter lists, several of the Crystal Reports (v8.5) here are accessed by some ASP wrappers to populate the selection lists at run-time, rather than design-time. This has been working very well so far, but recent demands have produced the addition of a report with a multiple-selection list which needs to be populated at run-time.
At present, these reports are handled by using a standard HTML form, with the report file as the action on the form, akin to:
The problem is that the viewer doesn't seem to properly handling the parameters supplied by the form's multiple-selection listbox (single-selection lists work fine).
Can anyone help me out here on what I need to do for the viewer to see all selections from the select list, and not just the first one?
To facilitate the use of dynamic pick lists/parameter lists, several of the Crystal Reports (v8.5) here are accessed by some ASP wrappers to populate the selection lists at run-time, rather than design-time. This has been working very well so far, but recent demands have produced the addition of a report with a multiple-selection list which needs to be populated at run-time.
At present, these reports are handled by using a standard HTML form, with the report file as the action on the form, akin to:
Code:
<form method="post" action="report.rpt">
<input type="hidden" name="init" value="actx" />
<input type="hidden" name="user-servername.databasename" value="********" />
<input type="hidden" name="password-servername.databasename" value="********" />
<input type="hidden" name="promptOnRefresh" value="0" />
<select name="prompt1" size="10" multiple="multiple">
...
</select>
</form>
The problem is that the viewer doesn't seem to properly handling the parameters supplied by the form's multiple-selection listbox (single-selection lists work fine).
Can anyone help me out here on what I need to do for the viewer to see all selections from the select list, and not just the first one?