Topic: How to Edit Script For Stop and Continue Loop ?
I will
1. push button for start loop
2. push button again for stop loop
3. push button again for continue loop
How to Edit code ?
set i : Integer ;
begin
i : 1;
While i > 0 do
begin
Form1.Memo1.Lines.add(inttostr(i));
i:=i+1;
end;
end;
Easy For Beginner Student For Me