Background

We have a problem that sometimes the grid in Devexpress raise exception "Raised EConvertError: Cannot assign a nil to a TFont".

But to trace the real cause of this we have changed Font in cxEdit to be a public property instead with a get and set method. Here I want to log the callstack.

My question

Normally JCL is used to log callstacks when exceptions appear. But how can I log the callstack without using raise exception and show a dialog for the user about this ?

I have found the lines:

var
  GlobalStackList: TJclGlobalStackList;

in JclDebug but I fail to use it. If someone have a example how to get the callstack I would be happy.

Regards Roland Bengtsson

link|improve this question

79% accept rate
Not a full duplicate, but you need the same info as answered under Need a way to periodically log the call stack/stack trace for EVERY method/procedure/function called – Jeroen Wiert Pluimers Mar 21 '11 at 8:04
This is not a exact duplicate of another question, it's specific to JCL. The other question mentioned ended up wanting a call trace and not a call stack. – Robert Love Mar 22 '11 at 4:34
feedback

1 Answer

up vote 5 down vote accepted

This answer shows how to do it with JCL by calling JclCreateStackList.

link|improve this answer
+1 could not have said it better myself :-) – Robert Love Mar 21 '11 at 13:22
Thanks for the reply – Roland Bengtsson Mar 22 '11 at 9:02
feedback

Your Answer

 
or
required, but never shown

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