Grade das ist doch prädistiniert für ein Exit;
Delphi-Quellcode:
if not KlapptDas1 then
Exit;
if not KlapptDas2 then
Exit;
if not KlapptDas3 then
Exit;
if not KlapptDas4 then
Exit;
... // jetzt kann es losgehen
Breakpoint auf alle Exit und du springst sofort auf den betreffenden Exit ohne mit F8 durch zappen zu müssen.
Auf eine Zeile mit einem simplen Exit kannst du aber keinen Breakpoint setzen. Nur wenn mit dem Exit ein Result zurückgegeben wird geht das.
Delphi-Quellcode:
if not KlapptDas1 then
Exit(False);
if not KlapptDas2 then
Exit(False);
if not KlapptDas3 then
Exit(False);
if not KlapptDas4 then
Exit(False);
... // jetzt kann es losgehen