Remarks | Properties | Methods | Samples |
ED
|
avaliable
|
RT
|
avaliable
|
The collection Projects contains all projects loaded in the
Runtime. The single projects of the Runtime are available as
objects Project in VBA.
It is not possible to create an object of this type with the
attribute New.
Count | Parent |
Create | Item |
Sub GetProjects() Dim i As Integer 'enumerate all projects '"Application" instead of "ApplicationED" at runtime! For i = 0 To ApplicationED.Projects.Count - 1 Debug.Print ApplicationED.Projects.Item(i).Name & _ ApplicationED.Projects.Item(i).DynProperties("GUID") Next i End Sub Sub CreateProject() 'create a new project ApplicationED.Projects.Create End Sub