ProgramPath Example

Land Auto

ProgramPath Example

Sub Example_ProgramPath()
    
    ' This example returns the ProgramPath setting.
    Dim prefFiles As AeccPreferencesFiles
    Set prefFiles = AeccApplication.Preferences.Files
    
    MsgBox "The current value for ProgramPath is: " & prefFiles.ProgramPath, _
        vbInformation, "ProgramPath Example"
    
End Sub