Registriert seit: 25. Feb 2003
Ort: St. Ingbert
211 Beiträge
Delphi 7 Enterprise
|
Re: anderes Prob (hab schon gesucht) INI-File Leseproblem
20. Nov 2003, 00:32
Dein fehler liegt wohl hier:
Delphi-Quellcode:
IniFile:=TIniFile.create(ExtractFilePath(Paramstr(0))+'Einstellungen.ini');
.....
inifile := TIniFile.Create('Einstellungen.ini');
Denn !!!
TIniFile.create(ExtractFilePath(Paramstr(0))+'Einstellungen.ini'); != TIniFile.Create('Einstellungen.ini');
Programming today is a race between Software Engineers striving to build bigger and better idiot-proof Programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning!
|