Hi,
A simple problem to be solved using Delphi OOP:
A button counts an integer
procedure TForm1.Button1Click(Sender: TObject);
var
i :int64;
begin
i:=0;
(While not (i=10000000) do begin
inc(i);
if ??????????
end;
showmessage(IntToStr(i));
end;
I need a way to stop and start the counting action at the runtime.
I will appreciate if you know a way to solve this problem.
Thanks
Arman
email : arman.nyilas@itp.fzk.de
A simple problem to be solved using Delphi OOP:
A button counts an integer
procedure TForm1.Button1Click(Sender: TObject);
var
i :int64;
begin
i:=0;
(While not (i=10000000) do begin
inc(i);
if ??????????
end;
showmessage(IntToStr(i));
end;
I need a way to stop and start the counting action at the runtime.
I will appreciate if you know a way to solve this problem.
Thanks
Arman
email : arman.nyilas@itp.fzk.de