9.0
232
Return the second of the minute (0 to 59).
Parameter Description
dateexpr Return the second of the minute for this date value. If this value is Null then Null is
returned.
See Also: Hour( ), Minute( ), Time( ).
Example
Sub Main
Debug
.Print Second(#12:00:01 AM#) ' 1
End
Sub
Seek Function
Syntax
Seek(StreamNum)
Group
File
Description
Return StreamNum current position. For Random mode files this is the record number. The first record is 1.
Otherwise, it is the byte position. The first byte is 1.
Parameter Description
StreamNum Streams 1 through 255 are private to each macro. Streams 256 through 511 are
shared by all macros.
See Also: Seek.
Example
Sub Main
Open
"XXX" For Input As #1
Debug
.Print Seek(1) ' 1
Line
Input #1,L$
Debug
.Print Seek(1)
Close
#1
End
Sub
Seek Instruction
Syntax
Seek [#]StreamNum, Count
Group
File










