DB closes but Access keeps running!

ipr1

Registered User.
Local time
Today, 21:15
Joined
Jun 13, 2003
Messages
31
I run several databases daily - after running two of them (at different times), the database itself closes but the Access program stays open. In order to close that program, I have to close it out using the Task Manager.

Any suggested solutions? Thanks (as always) for your assistance.

Bob

:confused:
 
I would check and make sure that all objects set are released.

Set dbs = CurrentDb
Set rstXLS = dbs.OpenRecordset("tblXLfiles")

..........

Set rstXLS = Nothing
Set dbs = Nothing

HTH

Peter
 

Users who are viewing this thread

Back
Top Bottom