Projects Property

Returns a Projects collection representing the open projects in Microsoft Office Project 2003. Read-only.

Example

The following example adds the date and time to the Comments field in the Project Properties dialog box and then saves the project.

Sub SaveAndNoteTime()
    Projects(1).ProjectNotes = Projects(1).ProjectNotes & vbCrLf & "This project was last saved on " _
        & Date$ & " at " & Time$ & "."
    FileSave
End Sub

Applies to | Application Object