Can I view the call stack in the delphi 7 debugger?

From what I see, there are no menu options for viewing the call stack, as I used to see in debuggers for other languages. Is it a function that simply did not exist in this (old) version of Delphi? Is there any other way to search for links or determine what other code in the project uses a certain function if it is not possible to view the call stack in the debugger?

+5
source share
2 answers

This is from delphi 7

check it out enter image description here

and call stack enter image description here

+7
source

If it is Delphi 7, start debugging the application, and then use the "Glass / Debug Windows / Call" menu.

+12
source

All Articles