VB Code:
  1. Private Sub Command1_Click()
  2. Dim filename As String
  3. filename = App.Path & "\Listview.txt"
  4. Open filename For Input As #1
  5. Text1.Text = Input(LOF(1), #1)
  6. Text1.Text = Replace(Text1.Text, Chr(0), "")
  7. Text1.Text = Replace(Text1.Text, vbCrLf, "")
  8. Text1.Text = Replace(Text1.Text, Space$(number here), "")
  9. Close #1
  10. End Sub

This will put spaces in between each line. Set the integer to what you want