Hello,
I have 4 arrays A, B, C, D. A contains numbers (float) and the other arrays contain strings.
The items in A,B,C and D are connected (all items with the same index must be together):
A[0]: 1
B[0]: String 1
C[0]: String 2
D[0]: String 3
A[1]: 0
B[1]: String 1
C[1]: String 2
D[1]: String 3
Now I want to sort array A descending. If item 1 and 2 are mixed up in array A then these two items must also be mixed up in array B,C and D.
How can I do this?
thanks,