HelpPath Example

Land Auto

HelpPath Example

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