Using Delphi 7, how can I get a string representing the stack-trace from an Exception?

try
  SomethingDodgy();
except
  on E:Exception do begin
    // print stack trace
    Log.Write(/* ??? */);
  end;
end;

I hear there's a GetStackTrace function in the latest delphi, but I can't find anything for delphi 7. No, upgrading is not an option :)

link|improve this question

1  
Note that the GetStackTrace method in newer Delphi versions does not actually return a stack trace. You do need an external exception framework anyway. – Smasher Nov 16 '09 at 12:18
You can have JCL set up in minutes. I posted an example on this SO question: stackoverflow.com/questions/1259563/… – Runner Nov 16 '09 at 12:29
feedback

4 Answers

You could try using madExcept, a wonderful Exception handling framework.

madshi has heaps of sample code in there; I'm sure I've used the stack-trace stuff in there before.

As Dmitriy noted, the JCL also has stack-trace code; an old sample is here.

link|improve this answer
Yeah, madExcept is awesome - but this is commercial code I'm writing, and I don't think I can get the company to buy madExcept right now. JCL sounds good too though, I will take a look.. – Blorgbeard Nov 16 '09 at 6:18
2  
It's not all that expensive. How many hours of work should you spend working around this?? – Loren Pechtel Nov 16 '09 at 6:22
Yeah - but the stack trace is a nice-to-have in this project, so I won't spend much time trying to work around it. – Blorgbeard Nov 16 '09 at 6:27
JCL DEBUG works very good for me. – Edwin Yip Nov 18 '09 at 3:25
feedback

I throw EurekaLog in the game. It's a great tool and not expensive at all.

link|improve this answer
feedback

MemChk is pretty easy to use (especially to search/find memory leaks) and knows how to render a stack trace from a code address.

link|improve this answer
feedback

The stack-trace in Win32 is not as good as .NET's or Java's (and the latest versoin of Delphi uses .NET stack trace).
Anyway, I found one link that provides more information on it here (It is at ExeEx so to allow to view that solution click the first link on the search).

See the bottom of the page there.

link|improve this answer
-1. Experts Exchange: "All comments and solutions are available to Premium Service Members only." – Rob Kennedy Nov 16 '09 at 15:28
I told you read at the BOTTOM! There are solutions. Please read properly before downvoting! – Dmytrii Nagirniak Nov 16 '09 at 22:43
@Dmitriy: No there are no solutions. Not at the bottom and not anywhere else. – Smasher Nov 17 '09 at 18:18
3  
ExEx is sneaky. If you google for the URL, and then click the link from google, your referer will be google, and they will show you the solutions. – Blorgbeard Nov 17 '09 at 22:15
5  
The sooner SO kills them, the better. – Blorgbeard Nov 17 '09 at 22:15
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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