is there a way to print what someone's files are on screen for ex.
i want to show all prg,txt ect on there screen to show them there files.is it possible?
You can use the FILES command. You can print a list of files with this command, and you can specify the type of file to be printed as a parameter. The types you can specify are "TXT:", "DAT:", "//" (for the project list), and "PROJECT/" (to print the contents of a specified project).
In case you don't want to print it, but store it somewhere for future use, you can specify a string array after the file type argument to store the file list in there. Remember the file type argument is optional. Like this...
DIM FLS$[0]
FILES "DAT:",FLS$
This puts the list of all DAT files in the current project in a string array called FLS$.