
 |
FILLARRAY 4,5,6,7
FILLARRAY var$[<subscript>],4 fills the specifed array
with the names of all non-hidden programs which are open.
There is currently no support for hidden programs.
FILLARRAY var$[<subscript>],5[,<mask>] [ALL]
fills the specifed array with the names of all files which
match the specified mask (eg. C:\MYDIR\*.*). If no mask is
specified then "*.*" is used.
FILLARRAY var$[<subscript>],6[,<mask>] [ALL]
fills the specifed array with the names of all directories
which match the specified mask (eg. C:\MYDIR\*.*). If no mask
is specified then "*.*" is used.
FILLARRAY var$[<subscript>],7 fills the specifed array
with a trace of the subroutine and function calls which have
lead the program to the current point. Note that the first
element returned will be the last call, so the last element
returned will be the first call (eg. main).
|