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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.