Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
Re: Umwandlung TStrings in Integer
27. Mai 2007, 15:30
Hi
Ehm das Problem liegt ganz woanders.. du musst und darfst die Strings in deiner Liste gar nicht in Zahlen umwandeln!
So muss das heißen:
Delphi-Quellcode:
for j := 0 to F.itemsCount - 1 do
begin
rows[j]:= SF.Items[j];
end;
Gruß
Neutral General
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|