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 to the specified module.
Syntax
s = APP_GetModuleFullPath(ModuleName)
Returns
String
Parameters
Name |
Type |
Optional |
Meaning |
ModuleName |
String |
Yes |
Name of the module. Use short form like in USES keyword. |
Remarks
Function will search for the requested module following below path sequence:
1.thinBasic path
2.thinBasic path \ Lib \
3.thinBasic path \ Bin \
4.thinBasic path \ Mod \
5.thinBasic path \ Lib \ "thinBasic_" + ModuleName \
6.thinBasic path \ Bin \ "thinBasic_" + ModuleName \
7.thinBasic path \ Mod \ "thinBasic_" + ModuleName \
8.Source script path
9.Source script path \ Lib \
10.Source script path \ Bin \
11.Source script path \ Mod \
12.Source script path \ Lib \ "thinBasic_" + ModuleName \
13.Source script path \ Bin \ "thinBasic_" + ModuleName \
14.Source script path \ Mod \ "thinBasic_" + ModuleName \
If none of the above will be valid (ie module will not be found), an empty string will be returned.
Restrictions
See also
Examples
.