I have several VB.NET support programs that have been ported from VB6 and use the old style of Unstructured Exception Handling:
On Error GoTo yyy
My question is, can I get a stack trace when using unstructured exception handling or do I need to convert all of them to structured exception (Try / Catch) handling to catch the exception with its full stack trace.
source
share