This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
How can I delete all the selected items in a multi-select listbox in VB.NET?
Thanks,
James
just go through the selecteditems and remove it from the listbox items collection, but in reverse...like so:
Wow I hadn't thought of doing it in reverse
Thanks!
P.S. Whew I've lost count of how many of my problems you've fixed, ahmedilyas!
me.listbox.items.clear did it for me.