Thanks!

Is there a way to add a bunch of items at once without looping through an array? I remember reading talk about it but I have not been able to. Is this in tonight's hopefull release?

Current example:

code:
IF Open (10, $FileComputerList, 2) = 0
$TempComputerList = ''
$LineComputerList = ReadLine (10)
WHILE @error = 0
$TempComputerList = $TempComputerList + $LineComputerList + ','
$LineComputerList = ReadLine (10)
LOOP
$RC = Close (10)
$ArrComputerList = Split (SubStr ($TempComputerList, 1, Len ($TempComputerList) - 1), ',', -1)
FOR EACH $Computer IN $ArrComputerList
$Item = $List.Items.Add
$Item.Text = $Computer
NEXT
ENDIF

_________________________
Kelly