库参考未找到VBA文件(错误53)

时间:2018-03-13 21:43:14

标签: vba ms-access access-vba 32bit-64bit

运行Access应用程序时,收到错误53文件未找到错误。

enter image description here

错误消息中的文件是指应用程序的引用库。

enter image description here

我在代码中引用了库,就像这样......

a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]

x = []
def less_than_five():
    for item in a:
        if item < 5:
            x.append(item)
    print(x)

less_than_five()

并在以下函数中使用声明的子例程:

Private Declare PtrSafe Sub ControlUnlockT Lib "Accusoft.TwainPro9.ActiveX.dll" Alias "PS_Unlock" _
(ByVal pw1 As LongPtr, ByVal pw2 As LongPtr, ByVal pw3 As LongPtr, ByVal pw4 As LongPtr)

文件存在于路径中,所以我在这里缺少什么?

enter image description here

0 个答案:

没有答案