|
ED
|
avaliable
|
RT
|
avaliable
|
Returns the collection of projects loaded in the Runtime (object Application). With this projectlist the loaded projects can be accessed. The collection Projects can be accessed directly or it can be stored in a temporary variable. Each project is offered as an object Project in VBA.
'create all runtime files for all projects in the workspace... Public Sub CreateAllRuntimeFiles() Dim i As Integer On Error Resume Next For i = 0 To ApplicationED.Projects.Count - 1 ApplicationED.Projects.Item(i).Build tpAll Next i End Sub