I am using this code:

VB Code:
  1. Dim fileUsers As New IO.StreamReader("file.csv")
  2. Dim lineUsers As String()
  3. While fileUsers.Peek() <> -1
  4.   lineUsers = fileUsers.ReadLine().Split(",")
  5.   ListView1.Items.Add(lineUsers(0))
  6. End While

Now this works fine, except it loads the data into a very short column instead of the full way accross. How can I overcome this?


Cheers.