RemovePersonalInformation Property [Access 2003 VBA Language Reference]
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.
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
Applies to | CodeProject Object | CurrentProject Object | DataAccessPage Object