RemovePersonalInformation Property

Microsoft Access Visual Basic

RemovePersonalInformation Property

       

Returns or sets a Boolean indicating whether personal information about the user is stored in the specified project or data access page. True if personal information is removed. Read-write.

expression.RemovePersonalInformation

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets Microsoft Access to remove personal information from the current project the next time the user saves it.

CurrentProject.RemovePersonalInformation = True

This example sets Microsoft Access to remove personal information from the active data access page the next time the user saves it.

Screen.ActiveDataAccessPage _
    .RemovePersonalInformation = True