> I have now found that when a user, with Access 2002 Runtime,
> closes, correctly, their database and then I look at Task
[quoted text clipped - 10 lines]
>
> Jon
There are lots of possible reasons for access refusing to close.
The most common culprit is code which opens (sets) an object
reference but fails to close the object when finished with it.
if you :
Dim rs007 as recordset
set rs007 = currentdb.openrecordset(strSQL)
or
Dim frm01 as form
Set frm001 = mainform
You need to make sure that you:
rs007.close
set rs007 = nothing
frm001.close
set frm001 = nothing.
Many people say the "= nothing" is not required, others insist
it is.

Signature
Bob Quintal
PA is y I've altered my email address.
J-P-W - 29 Jan 2006 19:42 GMT
Thanks Bob, I've had a search through the code and there are some set
that aren't closed, so I've pepppered it with set xx = nothing's
Many thanks, Jon