LastSavedBy Property
Returns the name of the user who last saved a project. Read-only String.
Example
The following example adds the date the active project was last saved and the name of the user who last saved it to the notes of the active project.
Sub AddSaveInfoToNotes()
ActiveProject.ProjectNotes = ActiveProject.ProjectNotes & vbCrLf & "This project was last saved on " & CStr(ActiveProject.LastSaveDate) & " by " & ActiveProject.LastSavedBy & "."
End Sub
Applies to | Project Object, Projects Collection Object
See Also | FullName Property | HasPassword Property | LastPrintedDate Property | LastSaveDate Property | Path Property | ReadOnly Property | ReadOnlyRecommended Property | RevisionNumber Property | Saved Property