Kbase P8400: How to change a selection list from a single select to multi
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  02/02/2003 |
|
Status: Unverified
GOAL:
How to change a selection list from a single select to multiple select?
FIX:
Change the list's SINGLE attribute to MULTIPLE as in the following sample code:
Original selection list definition:
DEFINE VARIABLE cListName AS CHARACTER
VIEW-AS SELECTION-LIST SINGLE SCROLLBAR-VERTICAL
SIZE 35 BY 11 SORT NO-UNDO.
Changed selection list definition:
DEFINE VARIABLE cListName AS CHARACTER
VIEW-AS SELECTION-LIST MULTIPLE SCROLLBAR-VERTICAL
SIZE 35 BY 11 SORT NO-UNDO.