Hey all,
i'm trying to remove some items from a multi-select listbox (value list) using the follwing....
...however, it only remove the first selected item then exits the loop. Can anyone see why??
Thanks, spin.
i'm trying to remove some items from a multi-select listbox (value list) using the follwing....
Code:
Set lstBox = Me.lst_To_Address
For Each varItem In lstBox.ItemsSelected
lstItem = lstBox.Column(0, varItem)
lstBox.RemoveItem (lstItem)
Next varItem
...however, it only remove the first selected item then exits the loop. Can anyone see why??
Thanks, spin.