Hi,
Is there a way to warn the user they are closing the whole database down when they click the Close App button?
I have the code:
Cheers
WIll
Is there a way to warn the user they are closing the whole database down when they click the Close App button?
I have the code:
Code:
Private Sub cmd_Quit_Click()
On Error GoTo Err_cmd_Quit_Click
If Me.Dirty Then Me.Dirty = False
DoCmd.Quit
Exit_cmd_Quit_Click:
Exit Sub
Err_cmd_Quit_Click:
MsgBox Err.Description
Resume Exit_cmd_Quit_Click
End Sub
Cheers
WIll