I searched quickly and didn't find what I need...
Is it prudent to use error handling on a subroutine which simply calls a routine that already has error handling? I don't mind doing it, but I feel it's making my code much longer than need be...
I do plan on this being a run-time operation if that matters...Please see code below as an example
Is it prudent to use error handling on a subroutine which simply calls a routine that already has error handling? I don't mind doing it, but I feel it's making my code much longer than need be...
I do plan on this being a run-time operation if that matters...Please see code below as an example
Code:
Private Sub cboCatID_DblClick(Cancel As Integer)
On Error GoTo Error_Handler
DblClickAddCat "Category", "frmMSDSCat"
Exit_Procedure:
On Error Resume Next
Exit Sub
Error_Handler:
DisplayErr Err.Number, Err.Description, "frmMSDS", "cboCatID_DblClick"
Resume Exit_Procedure
Resume
End Sub