Problems with DAO and VBS

  • Thread starter Thread starter Thomas Wohlgemuth
  • Start date Start date
T

Thomas Wohlgemuth

Hello
I´ve a VBS procedure to process database by DAO.
If I start procedure on one server all is OK. On the other server I get
error message :

xxx.vbs(63, 5) DAO.DbEngine: Cannot load DLL: '?????L?'

I don´t know what is the reason. Can anybody help me?

THX
Thomas
 
Hi, Thomas.

This is VB Script, not VBA -- the programming language of Access -- so most
people who might offer to answer your question in this newsgroup will
probably skip it. However, if the error occured in Access, then I would
recommend re-registering the DAO library on the server with the problem. To
do so, click the Windows Start button, and then click Run. If the DAO and
library is installed in the default directory (otherwise, just replace the
path with your own), then use the following command for the DAO library (this
is all one line):

Regsvr32 "C:\Program Files\Common Files\Microsoft Shared\DAO\DAO360.DLL"

However, if the database is using Jet 3.51 (Access 97) instead of Jet 4.0
(Access 2000 through 2003), then replace the name of the DAO library file
with DAO350.DLL.

If this doesn't work (it certainly won't hurt anything), then post your
question in the appropriate newsgroup.

HTH.

Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips.

(Please remove ZERO_SPAM from my reply E-mail address, so that a message
will be forwarded to me.)

- - -
When you see correct answers to your question, please sign in to Microsoft's
Online Community and mark these posts, so that all may benefit by filtering
 
Hi Thomas,

So what is line 63 of your script?



Hello
I´ve a VBS procedure to process database by DAO.
If I start procedure on one server all is OK. On the other server I get
error message :

xxx.vbs(63, 5) DAO.DbEngine: Cannot load DLL: '?????L?'

I don´t know what is the reason. Can anybody help me?

THX
Thomas
 
Back
Top