- Code: Select all
Var
From2Loop:Int64
AllPass:TStringList;
Begin
AllPass:=Tstringlist.Create;
While 1< 999999999999999999 do
Begin
AllPass.Add(IntToStr(From2Loop));
From2Loop:=From2Loop+1;
End;
End;
i want to add all of that big numbers to my Stringlist(which is allpass)
1.is it possible to have that much items in a stringlist?
2.if yes is there a better way so i can substitute with this while?because
most of the time the application freezes
thanks Before