I am, but i was also loading items into the ListBox from a datatable. I am
putting the selected items from the ListBox into a Collection
("App.ProdSel"). I found this code which worked for me.
Dim drvListItem as DataRowView
For Each drvListItem In lstProduct.SelectedItems
App.ProdSel.Add(drvListItem(lstProduct.DisplayMember))
Next
I didn't realize that when you load items into a ListBox or ComboBox from a
datatable that they become DataRowViews and that you can access them that
way. Found the right code just a few minutes before you e-mailed me.
Thank you for your help.