RemovePersonalInformation Property
From Microsoft Access Visual Basic
expression.RemovePersonalInformation
expression Required. An expression that returns one of the objects in the Applies To list.
Remarks
This property corresponds to the RemoveFileProperties property that is available on a data access page's property sheet.
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