I've installed JCL into Delphi 2010. In the following code

try
  raise Exception.Create('Error Message');
except
  on E: Exception do
  begin
    ResultStatus := JclLastExceptStackListToStrings(sl, True, True, True, True);
  end;
end;

Also I have this call in the initialization section:

initialization
  JclStartExceptionTracking;

ResultStatus is false and sl is empty. I have set options to generate map and .jdbg files. Other functions, like ProcByLevel work fine. Is there something else I need to do to make JclLastExceptStackListToStrings work?

From JclDebug.pas file:

Last modified: $Date:: 2010-09-07 19:43:19 +0200 (mar., 07 sept. 2010) Revision: $Rev:: 3331

link|improve this question

It would be good if you came back and said what happened, and accepted the answer that worked! – Warren P Apr 11 at 20:32
Unfortunately I don't know the reason. I reinstalled everything (including IDE) and started a new project. So it might have been a number of reasons, but I didn't have time to find what it exactly was. – Max Apr 16 at 18:06
feedback

2 Answers

Try calling

JclStartExceptionTracking;

at the very start of your application.

[Edit]You already are. Then I'm currently out of suggestions. [/Edit]

link|improve this answer
He's calling it in the initialization section. Would you have him call it earlier, or later? If earlier, how? – Rob Kennedy Jan 16 '11 at 19:04
He hadn't mentioned that yet when I posted this answer (check the edit log). I'll update my answer to avoid confusion. – Paul-Jan Jan 17 '11 at 18:30
feedback

I use:

JclStackTrackingOptions := [stStack, stExceptFrame, stRawMode, stAllModules, stStaticModuleList];

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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