kann es sein, das es ein Problem damit hat,
dass Du die Schleifenvariablen der FOR Schleife
in der Schleife veränderst.
Da wäre dann wenn ein while oder repeat Schleife besser.
Delphi-Quellcode:
la:=0;
while la < max.a do
begin
lb:=-max.b;
while lb < max.b do
begin
lc:=-max.c;
while lc < max.c do
begin
//jetzt kommt viel blabla
//aussenwelt
if (maxlauf>5000)or (i mod 10=0 ) then // keine Sorge der kommt da manchmal rein
begin
application.ProcessMessages;
if stop then
begin
la:=max.a;
lb:=max.b;
lc:=max.c;
end;
label2.Caption:=inttostr(maxformel-i);
end;
inc(lc);
end; /while lc
inc(lb);
end; //while lb
inc(la);
end; // while la
//jetzt kommt viel blabla
so ähnlich stelle ich mir das vor.
Ich mag das mit break nicht.
Grüße
Klaus