vote up 1 vote down star

I have a few VB.NET programs to maintain, that have been ported from VB6 and use the old style Unstructured Exception Handling:

On Error GoTo yyy

My question is, can I still get a stack trace while using Unstructured Exception Handling, or do I have to convert them all to Structured Exception Handling (Try/Catch) in order to catch an exception with its full stack trace.

flag

1  
Enrico, you should select MarkJ as the correct answer. Thanks. – Binary Worrier Jun 11 at 15:08
2  
Binary Worrier, you are a gentleman sir. – MarkJ Jun 11 at 16:25
Thank you both, both answers were very useful! Now I feel less guilty to avoid refactoring my old Unstructured Exception Handling :-) – Enrico Detoma Jun 12 at 7:58

2 Answers

vote up 3 vote down check

Here's a way to get the stack trace to the line that caused the exception, unlike the other answer which just traces to the routine where your error handler is. The error might have occurred in a different routine.

In the unstructured error handlers, just use the GetException property of the Err object to access the underlying exception - then use the StackTrace property. Like this:

Public Class Form1

Public Sub New()

    ' This call is required by the Windows Form Designer.' 
    InitializeComponent()

    ' Add any initialization after the InitializeComponent() call.' 
    On Error GoTo ErrHandle

    Call test()        
    Exit Sub 

ErrHandle:
    MsgBox("Stack trace " & Err.GetException.StackTrace)
    Exit Sub

End Sub 


Private Sub test()
    Call test2()
End Sub

Private Sub test2()
    Dim d(2) As Double

    MsgBox(d(-1))
End Sub
End Class
link|flag
Nice one, I didn't know about this, thanks :) – Binary Worrier Jun 11 at 15:08
vote up 2 vote down

As you know yourself, all things being equal, one should always use structured exception handling. However, if you can't, you can get your own stack trace by using the StackTrace class.

NB: Calls to stack trace are expensive, and should only be used in - ahem - 'exceptional' circumstances.

e.g

MethodName = (New StackFrame(0)).GetMethod.Name ' Get the current method
MethodName = (New StackFrame(1)).GetMethod.Name ' Get the Previous method
MethodName = (New StackFrame(2)).GetMethod.Name ' Get the method before that
link|flag
This just gives a stack trace to the routine where the error handler is. If you want to know the line that caused the exception, and which routine that was in, see my answer ;) – MarkJ Jun 11 at 13:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.