Hi all,

If you want to remove multiple selected items from the listbox then remember to go through the list backwards.

    For intIndex = ListBox1.ListCount - 1 To 0 Step -1
        If ListBox1.Selected(intIndex) Then
            ListBox1.RemoveItem intIndex
        End If
    Next
Cheers
Andy