DiscGetPath - method of the Pm object
Description:
Returns the requested path (eventually also file name) in Microsoft format.
Syntax:
String DiscGetPath(String sPmPath)
Return value:
Returns absolute path in Micrososft format.
Example:
Creates the full name and path to the file "XY.ini" in the application folder.
JavaScriptVBScriptSelect and copy to clipboard
var sIni = Pm.DiscGetPath("#app:XY.ini");
// in sIni there will be, for example "C:\Promotic\Apps\Application1\XY.ini"
Dim sIni
sIni = Pm.DiscGetPath("#app:XY.ini")
' in sIni there will be, for example "C:\Promotic\Apps\Application1\XY.ini"