Ok I understand, and actually it kind of works out because its almost 2 am here and I gotta work tomorrow. So I'm headed to bed.

Here is what I would do to get the text into an array:
VB Code:
  1. 'open the text file
  2.          Dim al As New ArrayList()
  3.         Dim fs As New System.IO.FileStream("customers.txt", IO.FileMode.Open)
  4.         Dim sr As New System.IO.StreamReader(fs)
  5.         Do While sr.Read
  6.             al.Add(sr.ReadLine)
  7.         Loop
  8.         'the lines array now contains the all the lines of text from the text file
  9.         Dim Lines() As String = al.ToArray(GetType(String))
  10.  
  11.             'customers.txt does not exist, stop
  12.         Else
  13.             MessageBox.Show("File does not exist!", "File not found", _
  14.             MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
  15.         End If