Application.Projects Property (Project)
Gets a Projects collection representing the open projects. Read-only Projects.
Syntax
expression .Projects
expression A variable that represents an Application object.
Remarks
To see the project Properties dialog box in Microsoft Project 2010, click the Microsoft Office button to show the Backstage view, click the Info tab, click Project Information, and then click Advanced Properties in the drop-down menu.
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