I am debugging a Microsoft Access program that occasionally hangs when users click on the quit button after been using the program for a long time. This program is just a lean Access front end with a SQL database back end.
One thing that puzzles me is that the quit button does nothing except for the following command:
DoCmd.Quit
Right now I'm suspecting this could be caused by the antivirus. MS Access will try to write (compacting) the database file on exit and the antivirus probably doesn't like that.
However, I'm just wondering anyone else had this problem before? Anything else that could cause this issue?