Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: inifile beschreiben
22. Nov 2010, 12:56
Delphi-Quellcode:
function MyGetInifileValue(myIniFile, mysection, myentry, mydefault:string):string;
var
myIni:TInifile;
strtemp:string;
inipath:string;
begin
inipath := ExtractFilePath(Application.ExeName);
// Das kann man sich komplett schenken, denn ExtractFilePath liefert den Pfad
// und der ist immer mit abschliessendem PathDelimiter definiert
// ExtractFilePath( Application.ExeName ) => '<Verzeichnisse>\'
// ExtractFileDir( Application.ExeName ) => '<Verzeichnisse>'
if Copy(inipath,Length(inipath),1) <> '\' then
inipath := inipath +'\';
myini := TInifile.Create(inipath+myIniFile+'.ini');
strtemp := myini.ReadString(mysection,myentry,mydefault);
myGetInifileValue := strtemp;
myini.Free;
end;
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
|
|
Zitat
|