Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.18 KB

Project.Project.ProjectNotes.md

File metadata and controls

46 lines (30 loc) · 1.18 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.ProjectNotes property (Project)
vbapj.chm132524
vbapj.chm132524
project-server
Project.Project.ProjectNotes
2a9dcdbe-50f2-544a-8aba-c2db0d6762bc
06/08/2017
medium

Project.ProjectNotes property (Project)

Gets or sets the notes for the project. Read/write String.

Syntax

expression. ProjectNotes

expression A variable that represents a Project object.

Remarks

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.

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

[!includeSupport and feedback]