Programming Reference Manual
 
Syntax
 
GetPath[$]([[Title$])
 
Description
Shows a dialog box where the user can select an existing folder from a tree structure. The returned string is a complete path. If the cancel button is pressed then a null string is returned.
 
Parameter
Description
Title$
This string value is the title of the dialog. If this is omitted then no title is used.
See Also
Example
 
Sub Main
    Debug.Print GetPath$("Choose an directory")
End Sub