ProjectPath Example

Land Auto

ProjectPath Example

Examples:

l PreferencesFiles

l Projects


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

Sub Example_ProjectPath_Projects()
    
    ' This example returns the ProjectPath setting.
    Dim projs As AeccProjects
    Set projs = AeccApplication.Projects
    
    MsgBox "The ProjectPath value for Projects is: " & projs.ProjectPath, _
        vbInformation, "ProjectPath Example"
    
End Sub