9.0
161
Return an environment string.
Parameter Description
Index Return this environment strin
g
's value. If there is no environment strin
g
at this index
a null string is returned. Indexes start at one.
Name Return this environment string's value. If the environment string can't be found a
null string is returned.
Example
Sub Main
Debug
.Print Environ("Path")
End
Sub
EOF Function
Syntax
EOF(StreamNum)
Group
File
Description
Return True if StreamNum is at the end of the file.
Parameter Description
StreamNum Streams 1 through 255 are private to each macro. Streams 256 through 511 are
shared by all macros.
Example
Sub Main
Open
"XXX" For Input As #1
While
Not EOF(1)
Line
Input #1,L$
Debug
.Print L$
Wend
Close
#1
End
Sub
Erase Instruction
Syntax
Erase arrayvar[, ...]
-or-
Erase usertypevar
.elem[, ...]
Group










