Does 'resume' leave 'on error' still active?

  • Thread starter Thread starter mscertified
  • Start date Start date
M

mscertified

After doing a resume in an error handling routine, is the 'on error' trap
that triggered the routine still active or do I need to execute a fresh 'on
error' trap?
Thanks.
 
mscertified said:
After doing a resume in an error handling routine, is the 'on error' trap
that triggered the routine still active or do I need to execute a fresh
'on
error' trap?
Thanks.

Yes. it's active till the procedure ends (or you issue a 'On Error GoTo 0'.
 
Back
Top