title | keywords | f1_keywords | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|---|
Project.ProjectNotes property (Project) |
vbapj.chm132524 |
|
project-server |
|
2a9dcdbe-50f2-544a-8aba-c2db0d6762bc |
06/08/2017 |
medium |
Gets or sets the notes for the project. Read/write String.
expression. ProjectNotes
expression A variable that represents a Project object.
To see the project Properties dialog box in Project, choose the FILE tab on the ribbon to show the Backstage view, choose the Info tab, and then choose Advanced Properties in the Project Information drop-down menu.
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
[!includeSupport and feedback]