Difference between revisions of "MC-Basic:SEEK"
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= Seek (# ''<DeviceHandle''> , <''lPointer''>) |AVAILABILITY= Versions 4.1.0 and higher |DESCRIPTION= Moves file pointer to specified location.…') |
m (1 revision) |
(No difference)
|
Revision as of 16:10, 13 December 2010
Moves file pointer to specified location.
Syntax
Seek (# <DeviceHandle> , <lPointer>)
Availability
Versions 4.1.0 and higher
Type
<DeviceHandle>: Long
<lPointer> : Long
Range
<DeviceHandle>: 1 to 255
<lPointer> : Maxlong
Scope
Task or Terminal
Examples
-->Open "File1.PRG" Mode="r" As #1
-->seek(#1,8)
-->?tell(#1)
8