Ciao!
Ho la necessità di fare un order by nome e data su un array bidimensionale.
Ho trovato questo algoritmo qsort2 che a quanto pare è molto usato.

' aData array to be sorted
' iIdx index of column to use for sorting
' iLb lower-bound of elements to be sorted
' iUb upper-bound of elements to be sorted
'
' e.g. QSort2(aData, 0, 0, ubound(aData)) ' sort the entire array based on column 0
' QSort2(aData, 3, 3, 8) ' sort elements from index 3 to 8 based on column 3

Public Sub QSort2 (aData, iIdx, iLb, iUb)
...

a me servirebbe un algoritmo che ordini in base a 2 colonne, per questo l'ordinamento avviene per una sola "iIdx".
Mi sapete aiutare?

Grazie
By
Marco