05-27-2006 12:27 PM
05-30-2006 03:00 AM
Hello Simon,
are you talking about the List Box control, or about the Lists from the Programmer's Toolbox library?
05-30-2006 03:12 AM
One of the advantages is, that you can remove or insert single items in the list, without having to reorganize the whole list. Because of that, there is no default order of items in the list, its a simple collection of items with the same type. If you want the items ordered, you have to sort the list with the function ListQuickSort or ListInsertionSort. Alternativley you can add elements sorted with the function ListInsertInOrder.
05-30-2006 06:25 AM
05-30-2006 06:42 AM
Hello Simon,
The order of the List items should indeed remain the same. I'm also using Lists and I never got any problems with the order. Are you using the function ListInsertItem to insert the items? And are you using FRONT_OF_LIST or END_OF_LIST as the last parameter for this function?
06-01-2006 12:05 PM