If you want to add the items to the top of the list, just tell the listbox the index you want the item added. For example:
List1.AddItem "One", 0
List1.AddItem "Two", 0
List1.AddItem "Three", 0
The listbox will contain the following
Three
Two
One
in that order. Be sure you don't have sorting on for the listbox or this won't be of any help. Snaggs
tribesaddict@swbell.net