I have a text file in my desktop...
In this file we have five lines:
Line 1 Line 2 Line 3 Line 4 Line 5
If the user choose this tex
Use:
Dim openfile = New OpenFileDialog() With {.Filter = "Text (*.Text)|*.txt"} If (openfile.ShowDialog() = System.Windows.Forms.DialogResult.OK) Then For Each line As String In File.ReadAllLines(openfile.FileName) ListBox1.Items.Add(line) Next End If
Code is a lot better.