Larry,
>I have a seq. file with some blank lines (CrLf only) in it. When the line
>is read, I get a value of "Nothing" returned, which give me an "End of File"
>condition, so I terminate my procedure.
You probably have code similar to this
Dim line As String = yourStreamReader.ReadLine()
Do Until line = Nothing
...
line = yourStreamReader.ReadLine()
Loop
The problem is that (line = Nothing) evaluates to True for empty
strings as well. Change it to
Do Until line Is Nothing
Mattias
--
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/
Please reply only to the newsgroup.