RemovePersonalInformation 属性

       

返回或设置 Boolean 值,表明与用户有关的个人信息是存储在指定的项目中,还是存储在数据访问页中。如果为 True,则删除个人信息。可读写。

expression.RemovePersonalInformation

expression   必需。返回“Applies To”列表中的一个对象的表达式。

示例

该示例设置 Microsoft Access 在下次用户保存时从当前项目中删除个人信息。

CurrentProject.RemovePersonalInformation = True

该示例设置 Microsoft Access 在下次用户保存时从活动的数据访问页中删除个人信息。

Screen.ActiveDataAccessPage _
    .RemovePersonalInformation = True