Compiler Error: User-defined types not defined

后端 未结 3 554
慢半拍i
慢半拍i 2020-11-30 08:35

I get the compile-time error \"User-defined types not defined\" on this line:

Dim cn As ADODB.Connection

What could be wrong?

Code:

3条回答
  •  青春惊慌失措
    2020-11-30 09:10

    I had forgotten to add a reference to "Microsoft ActiveX Data Objects 2.5 Library": This reference is required for early binding.

    How to get to that reference:

    Tools > References > Check the checkbox in front of "Microsoft ActiveX Data Objects 2.5 Library"

    Other libraries that work include:

    Microsoft ActiveX Data Objects 2.6 Library

    Microsoft ActiveX Data Objects 2.7 Library

    Microsoft ActiveX Data Objects 2.8 Library

    Microsoft ActiveX Data Objects 6.1 Library

提交回复
热议问题