DLL libraries msadox and msador15: Versions Problem

G

Guest

The above 2 libraries are used by my application, and they
appear in the references as follows:

Microsoft ADO ext. 2.7 for DDL and Security.
Microsoft ActiveX Data Objects Recordset 2.7 Library.

If I compile my application myself, it always initially
fails on my client's system, with the above showing as
MISSING. If I untick them, then go back in and look down
the list I find earlier versions of these libraries, which
work fine (but it's a real pain to have to do this). My
client is running Office XP just like me. It's as if
installing Office XP has not updated these libraries. Does
anyone know why? I use these libraries for another
application - an Acess one. Here I have the same problem -
different client.

Many thanks, Andy Keen
 
O

onedaywhen

Consider late binding. For example, instead of (early bound):

Dim oCat As ADOX.Catalog
Set oCat = New ADOX.Catalog

remove the reference to ADOX entirely and use (late bind):

Dim oCat As Object
Set oCat = CreatObject("ADOX.Catalog")

--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top