Shawn, I have a request.

Is it possible to add a property like removecopies or removeduplicates for listbox/combobox? In case the suggested property name doesn't explain it well enough. I'm asking for a property that will cause listbox/combobox to ignore multiple occurances of the same string.

Example:
$array = "1","1","2","2","3","3"
$MyBox = Listbox(,,,,)
$MyBox.List = $array

The listbox should contain 1 2 3 4 instead of 1 1 2 2 3 3 4 4.

Also, is there a way to have a listbox automatically scroll down when items are added?

Thanks