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;