Something like this?

Code:

$file = "c:\list.txt"
$ = open(1, $file)
$aCurLine = split(readline(1),';')
while not @error
$computer = trim($aCurLine[0])
$newIP = trim($aCurLine[1])
$newGW = trim($aCurLine[2])

? "Computer: " $computer
? "New IP: " $newIP
? "New GW: " $newGW

$aCurLine = split(readline(1),';')
loop

_________________________
Eric