LastUsedProj Example

Land Auto

LastUsedProj Example

Sub Example_LastUsedProj()
    
    ' This example returns the LastUsedProj setting.
    Dim prefUser As AeccPreferencesUser
    Set prefUser = AeccApplication.Preferences.User
    
    MsgBox "The current value for LastUsedProj is: " & prefUser.LastUsedProj, _
        vbInformation, "LastUsedProj Example"
    
End Sub