0

我有一个 MS Access 2003 数据库,它使用 ADO 2.8 并建立在 Windows vista 32 位上。当我第一次尝试编译将数据库移植到 32 位和 64 位的 Windows 7 机器时,我收到错误“未找到成员或数据成员”。

Dim con As New ADODB.Connection
Dim err As ADODB.Error

On Error GoTo ErrHandle

con.Open "MyDSN", "User", "Pass"

Exit Sub

ErrHandle:
For Each err In con.Errors
    Debug.Print err.Description
Next

显示错误的代码部分是“err.Description”。

当您尝试再次编译代码时,它工作正常。有什么想法或有人见过类似的问题吗?

4

0 回答 0