Home > lang > seek 
 en fr de es it pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Voorgaande  Volgende  Bewerken  Hernoemen  Undo  Search  Administratie  
Handleiding  
Waarschuwing Deze pagina is niet vertaald.  Zie Engelse versie 
SEEK
SEEK [ # ] Stream , Position

Defines the position of the stream pointer, for the next read/write operation.

If Position is negative, then the stream pointer is moved relatively to the end of the file.

To move the stream pointer after the end of the file, you must use the Lof function.

Voorbeeld

' Move to the beginning of the file
SEEK #hFile, 0

' Move after the end of the file
SEEK #hFile, Lof(#hFile)

' Move 100 bytes before the end of the file
SEEK #hFile, -100

Zie ook

Stream & Input/Output functions, Stream