Access '97 close problem

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Hi all,
One of our front ends has a habit of leaving behind a
blank box in the task bar after it has been shut down
through an OnTimer event. Is there something I can do to
stop this occuring?
Thanks in advance.
Dave
 
There is a known issue with Access 97 (And Access 2000 pre-SR1 I believe)
which causes this when in VBA you make in implicit reference to the value of
checkbox using code like 'if me.fCheckbox then' instead of 'if me.fCheckbox
= true'. There are also cases where failing to close and destroy recordsets
can create a lost instance of Access.

ACC97: Unable to Quit Microsoft Access
http://support.microsoft.com/?kbid=190074
 
Back
Top