Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var
X,MyNumber,MyTotal : Integer;
begin
if ListBox1.Items.Count > 0 then
begin
X := 0;
MyTotal := 0;
repeat
MyNumber := StrToInt(ListBox1.Strings[X]);
MyTotal := MyTotal + MyNumber;
X := X + 1;
until X = ListBox1.Items.Count;
end;
end;