I've been trying to add items to an array during a loop without success, in VB there is the Array.Add() but apprantly this doesn't work in KiX. Can anyone shed some light on this for me ?

To be more exact, I'm trying to do this without the Split() Join() functions. Here's my example test code
 Code:
Dim $fso, $txt
Dim $Array[5]
$fso = CreateObject("Scripting.FileSystemObject")
$txt = $fso.OpenTextFile("c:\boot.ini",Not 0)

While Not $txt.AtEndOfStream
  ;? $txt.ReadLine
  $Array.Add($txt.ReadLine)
Loop

$txt.Close
For Each $item in $Array
  ? "Line: " + $item
Next