Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide 'non-user' stack frames in Delphi call stack window?

Is it possible to hide/collapse stack frames, which does not have source code, and correspondingly, are not marked with these blue dots, in Delphi Call Stack?

Just for reference, Visual Studio is able to do this:

In managed code, by default. the Call Stack window hides information for non-user code. The following notation appears instead of the hidden information:

[< External Code>]

http://msdn.microsoft.com/en-us/library/a3694ts5.aspx

Will be nice if solution will work with Delphi XE2.

UPDATE

It can be some 3rd-party expert, or even code using ToolsAPI

like image 428
Serhii Kheilyk Avatar asked Oct 31 '22 23:10

Serhii Kheilyk


1 Answers

To the very best of my knowledge, the Delphi IDE has no equivalent to the VS feature you describe.

like image 125
David Heffernan Avatar answered Nov 15 '22 06:11

David Heffernan