Possible Duplicate:
GetStackTrace in Delphi 7?

Does anyone know how to get a nice friendly stack trace into a string when an exception is raised in Delphi 6?

link|improve this question
I used the JCL. Thanks Lieven. This was most useful: stackoverflow.com/questions/1259563/… – cja Dec 1 '09 at 15:21
feedback

closed as exact duplicate by mghie, Smasher, gabr, Ken White, jitter Dec 1 '09 at 18:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

madExcept can include the stack trace in the exception log. You can try madExcept free (there is a free non-commercial license).

error dialog

link|improve this answer
Thanks. madExcept seems to do too much. I already have a global exception handler which takes screenshots, writes to log, shows my own dialogue and then puts all error details in database or sends it by email. All I want is a stack trace. – cja Dec 1 '09 at 12:44
2  
So just use the part that you want! I do similar, but madExcept has hooks that allow you to get the stack as a string, and then you can do what you want. In my app I handle everything else. madExcept is well worth all the extras that come in handy sometime. – mj2008 Dec 1 '09 at 13:56
feedback

May be you can take a look at EurekaLog

link|improve this answer
I'm looking at this now. Seems a bit less controlling than madExcept. It looks like I can assign a procedure to ExceptionNotify, set Handled to True and then call CallStackToStrings(ExcRecord, AStringList) to get the call stack as a stringlist. Also, there's an exciting-looking function called GetCurrentCallStack, which I think I can call anywhere. Am still very open to other suggestions, though. I dream of a free version of GetCurrentCallStack! – cja Dec 1 '09 at 12:52
1  
In that case you should look at the Jedi vcl. This library contains what you need to get a stacktrace. – Lieven Dec 1 '09 at 13:13
1  
Lieven, it's the JCL, not the JVCL, which has stack tracing. – Craig Stuntz Dec 1 '09 at 13:48
I use JCL for logging the callstack and it works well. But it require debug-info to work. – Roland Bengtsson Dec 1 '09 at 14:17
1  
So do EurekaLog and madExcept. JCL supports different formats of debug info. Also internal or external. JCL also understands runtime package calls without debug info. – Lars Truijens Dec 1 '09 at 15:45
feedback

This answer by Runner and this blog post from Rob's Technology Corner provides you with all you need to get a stack trace with JCL.

link|improve this answer
We use JCL. Works very well. – Craig Stuntz Dec 1 '09 at 13:35
feedback

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