Well it does seem to be a ASCII "2" value.... but It didn't have any problems reading in the line... displayed all the text...
VB Code:
Dim myreader As New IO.StreamReader("c:\AACD1.txt") While myreader.Peek <> -1 MessageBox.Show(myreader.ReadLine) 'displayed the full line, with the character End While MyReader.Close()




Reply With Quote