Hello:

I need to store a date and a Path in an array type.

I have created this code:


Type myType
    Ruta As String
    DataCon As Date
End Type


Dim myArray(100) As myType
I need to order myArray by DataCon value (that is date value). Ruta must change its order as DataCon does while sorting.
Anyone knoes how to get it?


Thanks in advance.

Fran