how are you loading the text file?
Perhaps the text file is using Unix or Mac formatting...
Load the file up like this:
Code:
Dim FF as Integer
Dim LineStr as String
FF = Freefile
Open "FilePath" For Input As FF
Do While Not EOF(#FF)
Line Input #FF, LineStr
Text1.Text = LineStr & VbCrLf
Loop
Close FF
I Hope i set that out properly, im in the library and cant test it out here.