ok i want to show the contents of a txt file located online. iv used inet to grab the content of the text file:

form Code:
  1. Private Sub Form_Load()
  2. Dim UpData As String
  3.     UpData = Inet2.OpenURL("http://lazyrecords.co.uk/topfloordjs/LRMP/data.txt")
  4.    
  5.         DoEvents
  6.     Inet2.Cancel
  7.     ServerDataParse UpData
  8. Debug.Print UpData
  9. End Sub

but in this txt file it has carridge return (char(10)) and i want it to show in the listbox as new items. this is wat iv got so far in the module:

Module Code:
  1. Public Sub ServerDataParse(SiteFile As String)
  2. For i = 0 To Form1.List2.ListIndex
  3. ' this is where im gettin lost...
  4.  
  5. Form1.List2.AddItem SiteFile
  6. ' Form1.Text1 = SiteFile
  7. End Sub

Can anyone help me out?