private sub Teste () try call procedureTeste 'If error occur here on procedureTeste, when back, it shouldn't go to Catch, instead of go to msgbox? msgbox "here" catch ex as Execption end Try end Sub
Use the finally clause: Try procedureTeste() Finally MsgBox "here" End Try Hans Passant.