Jag öppnar en textfil för Input men vill börja läsa från filen ett bestämt antal tecken från första tecknet. Hur gör jag det? Vilken egenskap håller koll på hur långt man har läst av filen? Jag vet att det inte är några större problem med en binärfil men en textbaserad, hur? Seek StatementSätta läspunkt i fil
mvh FransSv: Sätta läspunkt i fil
Sets the position for the next read/write operation within a file opened using the Open statement.
Syntax
Seek [#]filenumber, position
The Seek statement syntax has these parts:
Part Description
filenumber Required. Any validfile number.
position Required. Number in the range 1 – 2,147,483,647, inclusive, that indicates where the next read/write operation should occur.
Remarks
Record numbers specified in Get and Put statements override file positioning performed by Seek.
Performing a file-write operation after a Seek operation beyond the end of a file extends the file. If you attempt a Seek operation to a negative or zero position, an error occurs.