Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Project Libraries

Status
Not open for further replies.

sanders720

Programmer
Aug 2, 2001
421
0
0
US
I now have my application working on my PC. When I move to another PC and run it (on the server), Upon trying to do a "docmd.form.requery" I get the error
"Can't find project or library"
DAO 3.6 is loaded. I even unloaded it and reloaded it to the path. What else could be wrong?

Thx,
 
Hi.

What version of Access are you using and is there a reason why you don't just use "me.requery"?

:)
 
Sanders,
To go off what Sandy asked, if you have Access 2000 (if you're using DAO 3.6 then you should be) then you'll have to change your Declaration statements...

Dim rst as DAO.Recordset versus Dim rst as Recordset, since ADO is the default for Access 2000 the second example will automatically try and create an ADO variable versus a DAO var. Kyle ::)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top