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




Reply With Quote