Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi string in ini speichern und wieder laden (https://www.delphipraxis.net/40769-string-ini-speichern-und-wieder-laden.html)

kiar 20. Feb 2005 19:33

Re: string in ini speichern und wieder laden
 
hallo,

Delphi-Quellcode:
 a:= delphiini.readstring(....);
raik

Prym 20. Feb 2005 19:59

Re: string in ini speichern und wieder laden
 
ah mega thx an alle ist echt super hier ich hoffe es stört nicht das ich noch ein naja mann könnte sagen ''noob'' bin

also nochmal danke an alle

mfg Prym

phXql 20. Feb 2005 21:37

Re: string in ini speichern und wieder laden
 
Zitat:

Zitat von Prym
ah mega thx an alle ist echt super hier ich hoffe es stört nicht das ich noch ein naja mann könnte sagen ''noob'' bin

also nochmal danke an alle

mfg Prym

auch wenn man ein "noob" ist, könnte man dem rat, den erfahrenere User geben, in der hilfe nachzuschauen, vielleicht mal nachgehen. aber ich will ja nix gesagt haben ;)

Matze 20. Feb 2005 21:47

Re: string in ini speichern und wieder laden
 
Zitat:

Zitat von Binärbaum
Besser ist's deshalb so [...]:
Delphi-Quellcode:
  DelphiIni := TIniFile.Create('c:\x\x.ini');
  DelphiIni.WriteString('Section','Str1','test');
  DelphiIni.Free;

Besser vielleicht schon, aber schlecht trotzdem, so sollte es sein (beidese Male):

Delphi-Quellcode:
  DelphiIni := TIniFile.Create('c:\x\x.ini');
try
  DelphiIni.WriteString('Section','Str1','test');
finally
  FreeAndNil(DelphiIni) //oder auch DelphiIni.Free;
end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 09:55 Uhr.
Seite 2 von 2     12   

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz