If I open a file for sequential reading of lines with:
OPEN MyFile.txt FOR INPUT AS #1
and read 2/3 of the contents, how do I start back at the top again?
Do I have to close the file and re-Open it? IS that the only way or is there some little GoToTop command i am missing?
------------------
Kind Regards
Mike
OPEN MyFile.txt FOR INPUT AS #1
and read 2/3 of the contents, how do I start back at the top again?
Do I have to close the file and re-Open it? IS that the only way or is there some little GoToTop command i am missing?
------------------
Kind Regards
Mike
Comment