sorting multiple arrays

  • Thread starter Thread starter cs_hart
  • Start date Start date
C

cs_hart

I have the following data
custID orderNum trackingNum ShipDate

I have put these in multiple arrays since I want to redim. For example,
the user selects one shipdate and I keep only the entries for that date
and thenn redim to a smaller array.

I come to a point where I want to sort by custID. I can find how to
sort two arrays, but how do I sort multiple arrays? A pointer to a
source would be good.
Or is there a better way to do this?
 
I have need seen anything faster then a dictionary
Take a look at them
also take a look at collections
might be able to help you out better
 
AFIAK, Use these two items to get the event that fires when a table is
added/removed

AddHandler DataGrid1.TableStyles.CollectionChanged, AddressOf
TableStyles_CollectionChanged

Public Sub TEstCC(ByVal sender As Object, ByVal e As
System.ComponentModel.CollectionChangeEventArgs)

End Sub
 
Sry, this was the wrong message to post this to.

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top