Access apps does not screen-up, is running.

  • Thread starter Thread starter Ken
  • Start date Start date
K

Ken

My Access apps recently does not sreen-up, but it is
running. I run the Microsoft Office Application Recovery
to end the application. Then restart the application, it
screens-up and runs fine. When I close one application
and try to open another, I get the same problem.
Any suggestions????
 
I suspect that you have not explicitly closed a recordset in your code
somewhere, or that you are a victim of a bug which affects boolean controls.

1. Always close objects (except the currentdb) that you open in your code
and set the variable to nothing.
2. Refer to boolean controls explicitly:

Instead of:

If Me.chkWhatever Then

use:

If Me.chkWhatever = True Then

or

If Me.chkWhatever.Value Then
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top