Search code examples
delphidebuggingbreakpoints

How to set breakpoints on every line of the code (delphi)?


I have a very big code, and I need to debug it fully, so I need to set breakpoint on every line of the code. Ho to do this?


Solution

  • No need to set breakpoints, F7 is the shortcut for "Debugger step into" which will do exactly what you're trying to do, step through the program stopping at every line.

    If you want to skip certain method calls, F8 ("Debugger step over") can also be helpful.