D
DianePDavies
I want to read a text file line by line:
Open "C:\TestFile.TXT" For Input As #1
count = 0
Input #1, InputString
While Not EOF(1)
count = count + 1
Input #1, InputString
Wend
If there is a comma in my text line, it is read as two lines...?
How do I avoid that?
Open "C:\TestFile.TXT" For Input As #1
count = 0
Input #1, InputString
While Not EOF(1)
count = count + 1
Input #1, InputString
Wend
If there is a comma in my text line, it is read as two lines...?
How do I avoid that?