Ok..let me clear that up because I don't think you understood the first time!

VB Code:
  1. Dim strArray(0) As String
  2.  
  3. Do while TS.AtEndOfStream = false
  4. strValue = left(Ts.Readline, 1)
  5. strValue = strValue & ","
  6.  
  7. Redim Preserve strArray(ubound(strArray) + 1)
  8. strArray(ubound(strArray)) = "WHATEVER"
  9. Loop