MiscFolder Property (AProgram) |
Version 6 |
Returns the Misc folder object if created. Otherwise, it will return Nothing.
[ appFolder = ] Object.MiscFolder
The MiscFolder property syntax has the following parts:
|
Name |
Type |
Description |
|
Object |
AProgram |
AProgram object |
|
appFolder |
AAppFolder |
Misc Folder if created. |
If you have any files that need to associate with the current program, you can create this MiscFolder that belongs to the program. You can also create Misc folder that belongs to another Misc Folder.
The following example prints its description the user entered during Design time:
if prg.MiscFolder
print prg.MiscFolder.Description
endif