Is it possible to select multiple items from a list or Combo box?
If yes then how?
Thanks
If yes then how?
Thanks
Dim tmpItem As Variant For Each tmpItem In listBoxName.ItemsSelected ' do something ' reference each object individually using <something> = listBoxName.ItemData(tmpItem) Next tmpItem
Comment