Projects Example
Sub Example_Projects()
' This example returns the number of Projects at the ProjectPath.
Dim projs As AeccProjects
Set projs = AeccApplication.Projects
MsgBox "The number of projects at " & projs.ProjectPath & " is: " & projs.Count, _
vbInformation, "Projects Example"
End Sub