Hi.
I want a list object to view the current directorys file names. When I have the event:
-- Start of frame
Add line - FileName$( "File", > Enter string here <)
What to write here instead of > Enter string here < ?
Printable View
Hi.
I want a list object to view the current directorys file names. When I have the event:
-- Start of frame
Add line - FileName$( "File", > Enter string here <)
What to write here instead of > Enter string here < ?
I believe this expression is from the File object; in which case the string would be the name of a specific file.
This technique will not work if you want to get the List object to show a list of files within a specific folder however; so instead you should use the following:
+Start of Frame
--> Load filelist from "C:\*"
[This will display all files in the C:\ directory. The 'Load Filelist' action can be found in the 'Files' sub-menu within the List object actions.]
Thanks for help :)