Hallo community,
Hier wird mir nichts in mein listview geladen. Nur wieso?
Hier wird mir nichts in mein listview geladen. Nur wieso?
VB.NET-Quellcode
- Try
- ListView1.Items.Clear()
- Dim vpr As New IO.StreamReader(Application.StartupPath & "\Listen\List1.dat") ' Sollte eigentlich klar sein
- While Not vpr.EndOfStream
- With ListView1.Items.Add(vpr.ReadLine)
- .SubItems.Add(vpr.ReadLine)
- .SubItems.Add(vpr.ReadLine)
- .SubItems.Add(vpr.ReadLine)
- End With
- End While
- vpr.Close() 'Datei schließen
- Catch ex As Exception
- End Try