All of a sudden I get the following error message when exiting my application through the command button:
"Microsoft Visual C++ Runtime Library
Runtime Error!
Program: C:\Program Files\Microsoft Office\MSACCESS.EXE
abnormal program termination"
My command button code:
Private Sub LogOut_Click()
'On Error GoTo Err_LogOut_Click
'Exits out of the Database completely
DoCmd.Quit
Response = acDataErrContinue
Exit_LogOut_Click:
Exit Sub
Err_LogOut_Click:
MsgBox Err.Description
Resume Exit_LogOut_Click
End Sub
Any help to point me in the right direction would be appreciated!
Thanks,
Toni
"Microsoft Visual C++ Runtime Library
Runtime Error!
Program: C:\Program Files\Microsoft Office\MSACCESS.EXE
abnormal program termination"
My command button code:
Private Sub LogOut_Click()
'On Error GoTo Err_LogOut_Click
'Exits out of the Database completely
DoCmd.Quit
Response = acDataErrContinue
Exit_LogOut_Click:
Exit Sub
Err_LogOut_Click:
MsgBox Err.Description
Resume Exit_LogOut_Click
End Sub
Any help to point me in the right direction would be appreciated!
Thanks,
Toni