PreferencesPath Example

Land Auto

PreferencesPath Example

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