CONST Multi AS Integer = 1 |
Indicates a multiple selection mode. When a user selects the item the selection status of that item is toggled; so the item is either added or removed from the list.
FOR i = 0 TO ListBox1.Count - 1 IF ListBox[i].Selected THEN Message.Info("Text is " & ListBox1[i].Text) ENDIF NEXT