Should you wish to disable an error trap, the following statement will disable the previous error trap:
On Error GoTo 0
Notice that the above sentence said previous error trap. The reason for this is that errors are handled in a call stack, which is also known as a calling chain. If you have a procedure that calls other procedures, and one of the called procedures has an error but no error handling, it will pass the error up the chain of procedures.