I want to run my delphi program, but I need to see how many times a specific loop is executed. I remember in school when using Delphi 7 we used to set it so that when running it would only run 1 line at a time instead of run all of them at once. I can unfortunately not, for the life of me, remember how to do this.
How do you set Delphi to only run one line at a time and require you to step it forward before running the next one?
F7
will execute one line (and will step into a subroutine).F8
will execute one line (but will not step into a subroutine so actually many lines can be executed).Shortcut keys are documented here.