MSACCESS.exe process does not close -- cont.

K

kev

I've tracked down the culprit that is keeping my
MSACCESS.exe hanging, but i don't know how to fix it.

Here's my code, the procedure is triggered by a command
button on a subform called dictlist

Dim datactrls As Control
For Each datactrls In Me.Parent.Controls
....
Next

My guess is that because dictlist is part of the
collection Me.Parent.Controls, and dictlist is triggering
the for...next loop, I've created some kind of circular
reference. Funny thing is i've only noticed this after
converting up to Access 2002 from Access 2000 file format.

Any ideas on how to fix this?

Thanks
 
Top