Das ist wieder das mit der Einrückung und dem fehlenden begin/end, eine Einrückung alleine reicht da nicht.
Delphi-Quellcode:
procedure AfterInstallConf(CurStep: TSetupStep);
var
DOSBoxConf : TStringList;
begin
if CurStep=ssPostInstall then
begin
DOSBoxConf := TStringList.Create;
DOSBoxConf.LoadFromFile('C:\Users\BWolonkieiwicz\AppData\Local\DOSBox\dosbox-SVN_MB6.conf');
DOSBoxConf.Add('Hallo');
DOSBoxConf.SaveToFile('C:\Users\BWolonkieiwicz\AppData\Local\DOSBox\dosbox-SVN_MB6.conf');
DOSBoxConf.Free;
end;
end;