How do you need to use these variables. here's a little snippet that will store each line of the text file (after the '=') into an array.

Code:

dim $varArray
$ = open(1,"yourfile")
$curLine = readline(1)
while @error = 0
redim preserve $varArray[ubound($varArray)+1]
$val = split($curLine,'=')[1]
$varArray[ubound($varArray)] = $val
$curLine = readline(1)
loop
$ = close(1)

for each $var in $varArray
? $var
next

_________________________
Eric