also ich hab mal ausprobiert was bei anderen Programmen un dem Breakpoint passiert und in einem wie
Delphi-Quellcode:
begin
x := StrToInt(Edit1.Text);
c := StrToInt(Edit2.Text) ;
y := x + c;
Edit3.Text := IntToStr(y) ;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
x := StrToInt(Edit1.Text);
c := StrToInt(Edit2.Text) ;
y := x - c;
Edit3.Text := IntToStr(y) ;
end;
da bleibt das auch nicht am breakpoint stehen sondern läuft einfach durch ....