On Error check for Function within Function

  • Thread starter Thread starter stickandrock
  • Start date Start date
S

stickandrock

I have a Function (Called "A") that has "On Error" logic coded for it. I
have another Function (Called "B") that is called from Function "A". If an
error occurs within Function "B" will the "On Error" condition be met on
Function "A" or does Function "B" need it's own "On Error" checking logic.

Thanks,
Don
 
stickandrock said:
I have a Function (Called "A") that has "On Error" logic coded for it. I
have another Function (Called "B") that is called from Function "A". If
an
error occurs within Function "B" will the "On Error" condition be met on
Function "A" or does Function "B" need it's own "On Error" checking logic.


The error-handler in A will be triggered.
 
Back
Top