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

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.
 
S

Stuart McCall

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'.
 
Top