From the QComboBox documentation:
QComboBox is single selection only. Think about it - if you could make it multiple selection, how would you display the result once the drop-down is closed?Note that you cannot alter the SelectionMode of the view(), e.g., by using setSelectionMode().
I suggest you substitute QListWidget or QListView in your GUI if you want multiple / extended selection mode.
Bookmarks