Author Example

Land Auto

Author Example

Sub Example_Author()
    
    ' This example returns the Author setting for the first Project
    ' in the collection
    Dim proj As AeccProject
    Set proj = AeccApplication.Projects.Item(0)
    
    MsgBox "The Author value for the first Project in the collection is: " & proj.Author, _
        vbInformation, "Author Example"
    
End Sub