Hi all,
I am using this function to get the selected items from the listbox.
Code:
Private Sub getListboxids(ByVal lst As CheckedListBox)
        Dim lstitems(lst.SelectedItems.Count - 1) As String
        lst.SelectedItems.CopyTo(lstitems, 0)
    End Sub
Is there any other way avl to get the selected values other than looping through the selected items collections


Thanks in advance
Dana