Jump to content

bikithalee

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

bikithalee's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. You should read the text file line by line and add it it list box http://vb.net-informations.com/files/vb.net_TextReader.htm Dim line As String Dim readFile As System.IO.TextReader = New StreamReader("C:\TextReader.txt") While True line = readFile.ReadLine() ListBox1.Items.Add(line) If line Is Nothing Then Exit While Else MsgBox(line) End If End While readFile.Close() bikitha.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.