This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Returns the full path and file name of a possible cAppConfig XML file determined by script or bundled executable file name.
Syntax
s = APP_ConfigFile
Returns
String
Parameters
Name |
Type |
Optional |
Meaning |
none |
Remarks
Very often an application has a configuration file used to store parameters like initial startup values to initialize application objects.
It has usually the same name of the application but with a specific extension
This function return the file name of the XML file using application and path and name, removing application extension and changing it with XML
Examples:
1.if the application is like C:\MyApplications\MyApp\MyApp.exe
APP_ConfigFile will return the string C:\MyApplications\MyApp\MyApp.xml
2.if the application is like C:\MyApplications\MyApp\MyApp.tbasic
APP_ConfigFile will return the string C:\MyApplications\MyApp\MyApp.xml
Restrictions
See also
App Object, cAppConfig Object
Examples