Dim fs, f,s,a(1 to 14),j,i
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.OpenTextFile("c:TEXT7.txt", 1,0)
j=1
Do While a.AtEndOfLine True
s=f.readline
i=instr(s,":")
a(j)=val(mid(s,i+1))
j=j+1
Loop
f.Close
for i=1 to 14
print a(i)
next i