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 myStringArray: array [0..99] of string;
var myStringList: TStringList;
begin
myStringList := TStringList.Create;
for I := 0 to 99 do
myStringList.Add(myStringArray[I]);
myStringList.Sort;
// then use the sorted list for whatever, then:
myStringList.Free;
end;