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