I need to sort the items in a visual basic listbox numerically, that is, I have a collection of numbers I would like to be sorted increasingly.
I tried to simply us
You could dump the items into a List(Of Integer) object and call its sort. Then bind your listbox to that new list post-sort.
List(Of Integer)