Project.CreationDate Property

Project Developer Reference

Returns the date a project was created. Read-only Variant.

Syntax

expression.CreationDate

expression   A variable that represents a Project object.

Example
The following example adds the creation date of the active project to its notes.

Visual Basic for Applications
  Sub AddCreationDateToNotes()
    ActiveProject.ProjectNotes = ActiveProject.ProjectNotes & vbCrLf & "This project was created on " & ActiveProject.CreationDate & "."
End Sub

See Also