Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default DLL libraries msadox and msador15: Versions Problem

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
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 459
Default DLL libraries msadox and msador15: Versions Problem

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")

--

"Robin Hammond" wrote in message ...
Andy,

Your most reliable solution is probably to install MDAC 2.8 on each client
machine with your application if possible. It should include all the latest
data access libraries. As far as I know Office does not update these
consistently.

http://www.microsoft.com/downloads/d...DisplayLang=en

Robin Hammond
www.enhanceddatasystems.com


wrote in message
...
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

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 575
Default DLL libraries msadox and msador15: Versions Problem

Andy,

Your most reliable solution is probably to install MDAC 2.8 on each client
machine with your application if possible. It should include all the latest
data access libraries. As far as I know Office does not update these
consistently.

http://www.microsoft.com/downloads/d...DisplayLang=en

Robin Hammond
www.enhanceddatasystems.com


wrote in message
...
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



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Please include fonts from previous versions ('98) in new versions JJBQ Excel Discussion (Misc queries) 3 October 8th 05 07:19 PM
Problem making versions of a table by changing sourse data in another workbook Dmitry Kopnichev Links and Linking in Excel 4 April 1st 05 06:44 AM
Problem making versions of a table by changing sourse data in another workbook Dmitry Kopnichev Excel Discussion (Misc queries) 4 April 1st 05 06:44 AM
DLL libraries msadox and msador15: Versions Problem No Name Excel Programming 0 November 29th 03 06:26 PM
error in registering msadox.dll Sameer S. Ali Excel Programming 0 September 27th 03 12:09 AM


All times are GMT +1. The time now is 05:01 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"