>Any way to order a list easily???
>
>Say I have a LIST and I want it alphabetized?


Convert the list to an array using ListToArray(), sort the array using
ArraySort(), and then convert back to a list using ArrayToList() (or just
loop through the array).

If at all possible, however, you should try and build the list already
sorted.  If you list is coming from a database then use an ORDER BY clause
and let the DB do the work for you.

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to