I have a text file that I am opening using
Open myfile.txt for Input as #1
I am then doing some text movement with a loop using
Do Until (EOF(1) = True)
Line Input #1, Variablelist
Loop
PROBLEM the text file I am opening is 1600 lines, when I use
Loc(1) to find the length of file I have only opened to line 653, and this is also reflected in the text movement I am doing within the Line Input Loop?
What is happening to the remaining 900+ lines of text.
Any help gratefully received.
Thanks
Adam
Open myfile.txt for Input as #1
I am then doing some text movement with a loop using
Do Until (EOF(1) = True)
Line Input #1, Variablelist
Loop
PROBLEM the text file I am opening is 1600 lines, when I use
Loc(1) to find the length of file I have only opened to line 653, and this is also reflected in the text movement I am doing within the Line Input Loop?
What is happening to the remaining 900+ lines of text.
Any help gratefully received.
Thanks
Adam