Report error

  • Thread starter Thread starter gr
  • Start date Start date
G

gr

Hi, I just distributed a database. today is the first day
using it. Now when closing (by clicking on the X)an error
message is displayed " Object invalid or not longer set"
the user has to click several times on Ok in order to make
the error message window closed..

I have no idea of what is happening.. any thoughts?

Thx.
 
My guess is that somewhere in the application is some code that opens a
database object (a recordset, I suspect), but doesn't close it. When your
application closes, the object has been set to Nothing, but some code refers
to it -- hence the message " ... invalid or no longer set".
 
Back
Top