This is usually related to one of two problems in your code.
Set rs = Nothing may be missing from your code. (Or some other object
variable is not being destroyed.)
The other is using implicit code for Boolean variables.
e.g. If fVarName Then
You should be explicit:
If fVarName = True Then
--
Joe Fallon
Access MVP
Quote:> Hello everyone,
> I am currently facing a problem that makes MS Access XP remain resident in
> memory;
> In fact, when programing with ADO, and then close or exit from Access, I
am
> not able to restart Access unless I press the ctrl-alt-delete and remove
MS
> Access from memory.
> Can anyone help?
> Thanks in advance
> Walid Kamouh