I have a form in my access db with a number of buttons tied to sub procedures. Right now, any errors are displayed in a message box:
Err_Command1_Click:
MsgBox Err.Description
Resume Exit_Command1_Click
End Sub
Instead of this, I would like the errors to go to either an external log file, or better yet into a table (tblErroLog) in the db. Can anyone help?
Err_Command1_Click:
MsgBox Err.Description
Resume Exit_Command1_Click
End Sub
Instead of this, I would like the errors to go to either an external log file, or better yet into a table (tblErroLog) in the db. Can anyone help?