I am trying to configure error handling for an MS-Access application. The standard method for this seems to be associated with the On Error statement in each routine / function. It seems to me that it is easier to use the Form_Error function to catch all the runtime errors in this form, rather than the On Error operator for each subfunction called by an event in this form. (Obviously, there is no Form_Error function for the code in the modules, and therefore the On Error operator is the only method)
What are the pros and cons of using On Error vs Form_Error?
source share