hidden form causing error on close

  • Thread starter Thread starter Andy G
  • Start date Start date
A

Andy G

I have a hidden form that I use for getting bits of information throughout
the application. When I close the system, by clicking the close button or
using DoCmd.Quit I get the error that it can't find my hidden form. Is
there anything I can do to avoid getting this error on close.

Thanks.
-Andy
 
I have a hidden form that I use for getting bits of information throughout
the application. When I close the system, by clicking the close button or
using DoCmd.Quit I get the error that it can't find my hidden form. Is
there anything I can do to avoid getting this error on close.

Thanks.
-Andy

Fix the code that is trying to "find the hidden form". Access itself
won't care, it'll just close the form (unless you have code in its
Close event to prevent it from closing, in which case you need to fix
that code).

John W. Vinson[MVP]
 
Back
Top