Skip to content
Advertisement

Microsoft Access “User-defined type not defined”

When trying to run the following code, I’m getting an error when it hits Dim qdf As QueryDef saying

User-defined type not defined

I think it’s really weird because I have a backup of this same project in which not many changes were made after it which is working completely fine for this. I’ve tried to retrace my steps and am struggling with that.

Any clue on what I might be missing? I’ve already tried the common suggestion of Tools > References and adding from there, and I had it working without that before anyway.

Advertisement

Answer

Because QueryDefs like TableDefs, Recordsets, and even Database are objects under Access’ Database Object (DAO) library, you need to have your MS Access project reference the library. Otherwise, VBA cannot interact with such objects, properties, and methods. DAO is the default database API of MS Access and very important to have selected if developing VBA modules among other defaults as shown below:

  • Visual Basic for Applications
  • Microsoft Access #.0 Object Library
  • OLE Automation
  • Microsoft Office #.# Access database engine Object Library

By contrast, ADO is a different database API requiring a different, non-default library: Microsoft ActiveX Data Objects #.# Library. In fact, as shown above, VBA itself is a reference as first checked item!

Actually, the full named reference of DAO objects would be prefixed with DAO to underscore its source. It is shorthand as you do to leave it out.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement