Generate list of every possible VBA reference GUID

Viewed 2318

I have an Access database I created in Access 2016. I have some VBA code that requires some libraries in Access 2016. Most other users have different, aged versions of Access.

For instance, one library I need to run the code is Microsoft Access 16.0 Object Library. Many users are running Office 2013, which has Microsoft Access 15.0 Object Library instead of 16.0.

I need to programmatically add this version of the library when they run the VBA code. This would require me to know the GUID, which I have been unable to find online. All other areas I've researched tell you how to get the GUID of libraries you have active, but this won't work for me becuase I cannot use or fine the 15.0 library.

How can I find the GUID for this library, and for other libraries I do not have active or installed?

3 Answers
Related