Does anyone know how to pause outputting from a file and continue from where you left off last time. Like if you were reading loads of information from a text file, how could you stop and continue from the same place later???
Printable View
Does anyone know how to pause outputting from a file and continue from where you left off last time. Like if you were reading loads of information from a text file, how could you stop and continue from the same place later???
i haven't use this before, hope it is what you need
seek(filenumber) as long
I was thinking something along the lines of writing the string currently being read into another txt file and searching for that string when the program is next started.