打开“访问选项”对话框,步骤如下:
a. 点击“文件”菜单,选择“选项”;
b. 选择“信任中心”;
c. 点击“信任中心设置”;
d. 选择“受信任位置”;
e. 点击“添加新位置”;
f. 输入数据库文件的路径,并勾选“子文件夹包含”,点击“确定”。
使用VBA代码,在打开数据库时自动添加路径到受信任位置列表中。示例代码如下:
Function AddTrustedLocation()
Dim strPath As String
strPath = CurrentProject.Path
strPath = Application.CurrentProject.FullName
Application.AutomationSecurity = msoAutomationSecurityLow
Dim sec As Office.Security
Set sec = Application.AutomationSecurity
sec.AddTrustedLocation strPath
End Function
Private Sub OpenDatabase_Click()
Call AddTrustedLocation
DoCmd.OpenDatabase CurrentProject.Path & "\MyDB.accdb"
End Sub
此代码会添加数据库所在路径到受信任位置列表中,从而防止安全警告的出现。