Access apps does not screen-up, is running.

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????
 
A

Arvin Meyer

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
 
Top