vote up 3 vote down star

I'd like to display a stack trace in an error dialog in Delphi 2007 (Win32).

Ideally, I'd like something like this:

try
  //do something
except on e : exception do
  begin
    //rollback a transaction or whatever i need to do here       
    MessageDlg('An error has occurred!' + #13#10 +
                e.Message + #13#10 +
               'Here is the stack trace:' + #13#10 +
               e.StackTrace,mtError,[mbOK],0);
  end;  //except
end;  /try-except

And for the output to be like the Call Stack in the IDE:

MYPROGRAM.SomeFunction
MYPROGRAM.SomeProcedure
MYPROGRAM.MYPROGRAM
:7c817067 kernel32.RegisterWaitForInputIdle + 0x49
flag

1 Answer

vote up 11 vote down check

madExcept has a method StackTrace (in unit madStackTrace) that does that.

JEDI Code Library offers similar functionality in unit JclDebug.

link|flag
madExcept is not free for commercial use. JclDebug is free and open source. There also is EurekaLog (eurekalog.com) – Lars Truijens Nov 3 '08 at 16:23
AFAIK, Eurekalog uses the JEDI code. – François Nov 3 '08 at 17:42
1  
>>> Eurekalog uses the JEDI code That is not 100% correct. Yes, EL includes parts of JCL code, but only for the supporting JDBG format and similar issues. The engine itself is written from scratch. Also EL uses its own format for debug-information (not JDBG). – Alexander Apr 25 at 11:29

Your Answer

Get an OpenID
or

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