Sheldon said:
I don't want people closing the database incorrectly. I
disabled the close button in all forms and reports, but it
still is available on the menu bar.
Open a hidden form at startup with something like this in the form's Unload
event.
If gvOKtoClose = False Then
Cancel = True
End If
Declare gvOKtoClose as a public variable in a standard module. In the
event for *your* close button...
gvOKtoClose = True
DoCmd.Quit