Re: debugger enhancements



Dennis Passmore schrieb:
you can if you just use two variables as follows:

procedure TForm1.Button1Click(Sender: TObject);
var
i,j: integer;
begin
for i := 0 to 10 do
begin
j := i-1;
edit1.Text := inttostr(i);
end;
end;

I can set a breakpoint on "edit1.Text := inttostr(i);"
with a condition of "i <> j" and it will stop every time it changes.


Okay, but I think it's poorly documented and still not quite what I
wanted, but you told me this would be not really possible. But it would
be the only way to get the cases where somebody behind your back changes
some variable. (e.g. a loose pointer which does harm...)

Greetings

Markus
.


Quantcast