GetPath

Description

Gets the path of the PASSPORT software working directory.

Syntax

ret = GetPath ( )

Parameters
ret String, output
  This string returns the PASSPORT working directory.
 
Remarks

Parentheses are optional.  This is a PASSPORT command. This command is not valid for PASSPORT WEB TO HOST and will return a null value if used.

Example

Sub ZMain()
strPath=GetPath()
MsgBox "The current path is: " & strPath
End Sub