Share via


Allowing Users to Select Multiple Items in a List Box

The default behavior of a list allows one item at a time to be selected. You can, however, make it possible for a user to select multiple items in a list.

To allow multiple selected items in a list

  • Set the MultiSelect property of the list to true (.T.).

To process the selected items — to copy them to an array or incorporate them elsewhere in your application — loop through the list items and process those for which the Selected property is true (.T.). The following code could be included in the InteractiveChange event of a list box to display the selected items in a combo box, cboSelected, and the number of selected items in a text box, txtNoSelected:

nNumberSelected = 0  && a variable to track the number
THISFORM.cboSelected.Clear && clear the combo box
FOR nCnt = 1 TO THIS.ListCount
   IF THIS.Selected(nCnt)
      nNumberSelected = nNumberSelected + 1
      THISFORM.cboSelected.Additem (THIS.List(nCnt))
   ENDIF
ENDFOR
THISFORM.txtNoSelected.Value = nNumberSelected

See Also

Creating Multicolumn List Boxes | Allowing Users to Add Items to a List Box | Using Controls | Refreshing a One-to-Many Display Based on a List Value | Controls and Objects