Thema: Delphi Ini Sektions in ListView

Einzelnen Beitrag anzeigen

citybreaker
(Gast)

n/a Beiträge
 
#4

Re: Ini Sektions in ListView

  Alt 5. Mär 2005, 16:12
Ok, hab das mal ausprobiert. Wenn ich die Sektions in ein TStringList
lade stürtz das Programm ab wenn die in der ListView angezeigt werden sollen.

Wenn ich alerdings die Sektions in eine Memo lade klappt alles wunderbar.

Delphi-Quellcode:
var Ini: TIniFile;
    sl: TStringList;
    i: integer;
begin
  sl := TStringList.Create;

  Ini := TIniFile.Create(SettingsFile);
  Ini.ReadSections(sl);
  Ini.Free;

  for i := 0 to sl.Count-1 do
    ListView.Items.Add.Caption := sl.Strings[i];

  Sl.Free;
  Mit Zitat antworten Zitat