Can you sort an array of a TYPE?
for example ...
will that work? does it sort on the first item in the TYPE?
And how about:
REDIM PRESERVE HDfile(2)
will that work also?
------------------
Kind Regards
Mike
[This message has been edited by Mike Trader (edited August 24, 2001).]
for example ...
Code:
TYPE HDfileStruct fName AS STRING*10 fSize AS LONG First AS LONG Last AS LONG SymStr AS STRING*12 CtrStr AS STRING*12 END TYPE GLOBAL HDfile() AS HDfileStruct ' ' ' fill up the array elements... ' ' ARRAY SORT HDfile(), COLLATE UCASE ' sort on fName ?
And how about:
REDIM PRESERVE HDfile(2)
will that work also?
------------------
Kind Regards
Mike
[This message has been edited by Mike Trader (edited August 24, 2001).]
Comment