1 Attachment(s)
Re: Sorting Parallel Arrays
Re: Sorting Parallel Arrays
Quote:
Originally Posted by
CrisIsRatedX
In Visual Basic 2005 is it possible to parallel sort three or maybe four arrays?
Yes, but there really is no good reason to do so. You really should be defining a class with the appropriate properties so that, instead of having three or four arrays/collections, you have one array/collection of objects that have three or four properties. You could bind that one list to all your ListBoxes and then simply sort the list as desired and each ListBox will reflect that.