Difference between revisions of "MC-Basic:SEEK"
m (1 revision) |
|||
| (9 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| + | {{Languages|MC-Basic:SEEK}} | ||
{{MC-Basic | {{MC-Basic | ||
|SHORT FORM= | |SHORT FORM= | ||
| Line 46: | Line 47: | ||
|SEE ALSO= | |SEE ALSO= | ||
| − | * [[ | + | * [[MC-Basic:OPEN FILE|OPEN FILE]] |
| − | * [[ | + | * [[MC-Basic:CLOSE|CLOSE]] |
| − | * [[ | + | * [[MC-Basic:INPUT$|INPUT$]] |
| − | * [[ | + | * [[MC-Basic:LOC|LOC]] |
| − | * [[ | + | * [[MC-Basic:PRINT HASH|PRINT HASH]] |
| − | * [[ | + | * [[MC-Basic:TELL|TELL]] |
| − | |||
| + | [[Category:MC-Basic:File Management|SEEK]] | ||
}} | }} | ||
Latest revision as of 03:00, 28 April 2017
| Language: | English • 中文(简体) |
|---|
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