I am using this code:
VB Code:
Dim fileUsers As New IO.StreamReader("file.csv") Dim lineUsers As String() While fileUsers.Peek() <> -1 lineUsers = fileUsers.ReadLine().Split(",") ListView1.Items.Add(lineUsers(0)) 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. :)
