Hallo zusammen,
wie beschreibe ich ein inifile ?
Auslesen habe ich bisher so gemacht:
Delphi-Quellcode:
function MyGetInifileValue(myIniFile, mysection, myentry, mydefault:string):string;
var
myIni:TInifile;
strtemp:string;
inipath:string;
begin
inipath := ExtractFilePath(Application.ExeName);
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;
Gruss
Holger