RE: How to correctly write Try..Finally..Except statements?
I\'m still confused by the OP\'s original question. Specifically, the last line of the procedure (outside
You don't actually catch the exception. In this case, upon exception, the "finally" block of code will execute, and then the exception will unwind the stack.