Autor Beitrag
zangelo Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 50



BeitragVerfasst: Sa 25.12.04 19:13 
ich hab es geschaft.
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
procedure TForm1.Button1Click(Sender: TObject);
var
  x, y: Integer;
begin
  x := StrToInt(Label1.Caption);
  y := x + 1;
  Label1.Caption := IntToStr(y);
end;

end.