property ComboBox.SingleSel as Boolean
Retrieves or sets a value that indicates whether the control supports single or multiple selection.

TypeDescription
Boolean A Boolean expression that specifies whether the control supports single or multiple-selection.
By default, the SingleSel property is True, which indicates that the selection supports a single item only. Use the SingleSel property to allow the user to select multiple values/items/rows. The SelectCount property counts the selected items in the control. Use the SelectedItem property to retrieve the handle of the selected item. Use the Value property to select a value in a single column control. The SelectableItem property specifies whether the user can select an item. Use the SelectItem or Select property to select an item. Use the SelectAll, UnselectAll method to select / unselect all items within the control (mostly when the SingleSel property is False).

The control's label displays the list of selected values (separated by comma) if:

The LabelText property specifies the HTML format to display the count of selected items (shown on the right side of the label  ), when control supports multiple-selection.