I'm struggling with something I'm sure I've missed...
I have a 1-dimensional array and I'm populating a ListBox using an _ArrayToString function within the GUICtrlSetData function.
If I perform an _ArrayReverse on the array before I execute the _ArrayToString function within the GUICtrlSetData, the list still populates in a sorted order.
If I do an _ArrayDisplay, it's showing to be reversed but when I populate the ListBox, it's still sorted!
_GetDirectoryListing()
_ArrayReverse($aMasterJobList)
_ArrayDisplay($aMasterJobList)
GUICtrlSetData($hJobList, _ArrayToString($aMasterJobList))
Am I missing a subtle (or not-so subtle) flag somewhere?