Registriert seit: 28. Feb 2011
Ort: Mannheim
1.384 Beiträge
Delphi 10.4 Sydney
|
AW: Ini Dateien - ReadSections
22. Jul 2011, 14:53
ReadSections gibt TStrings zurück.
Delphi-Quellcode:
function LadeDatum: TStrings;
begin
Ini.ReadSections(Result);
end;
procedure TForm1.Button1Click(Sender: TObject);
var
SL: TStringList;
begin
Ini:= TIniFile.Create( .. );
SL:= TStringList.Create;
SL.AddStrings(LadeDatum);
...
SL.Free;
ini.Free;
end;
|