Error Handler Code

User avatar
burrina
4StarLounger
Posts: 550
Joined: 30 Jul 2014, 23:58

Error Handler Code

Post by burrina »

I have used MZTools to build my error handling for many years but I need to find out what exactly the error number is. I need to convert this error handler to something else.
Maybe this is not the code that can trap that error but I can adapt.

Code: Select all

On Error GoTo Employee_Time_AfterUpdate_Error

 On Error GoTo 0
   Exit Sub

Employee_Time_AfterUpdate_Error:

    MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure Employee_Time_AfterUpdate of VBA Document Form_frmEmpHrs"

User avatar
burrina
4StarLounger
Posts: 550
Joined: 30 Jul 2014, 23:58

Re: Error Handler Code

Post by burrina »

Can disregard. I found the problem. Don't know how to fix, but at least that's something.