43近期文件表已经绑定到一个组合框,但该组合框所在的窗体已经关闭。但为什么以上程序不能执行(没有打开43近期文件表的权限)
Dim rstYS As DAO.Recordset
Set rstYS = CurrentDb.OpenRecordset("43近期文件表", dbOpenTable, dbDenyWrite + dbDenyRead, dbOptimistic) '预算文件路径和名称
With rstYS
.AddNew
If IsNull(strA) = False And strA <> "" Then
![文件名称] = Myname '预算文件名称
End If
![文件路径] = MyPath & Myname '预算文件路径
.Update
End With
rstYS.Close
Set rstYS = Nothing