섹션안의 내용을 불러오려면 ReadSection 함수를 쓰시면 되고
섹션을 불러올려면 ReadSections함수를 쓰시면 됩니다.
안에 있는 내용이 진짜로
김길동
홍길동
박길동
최길동
요런 식이라면 그냥 Text파일을 읽듯이 TStringList를 쓰시면 됩니다.
<!--CodeS-->
var
ini : TIniFile;
begin
ini := TIniFile.Create('C:\Program Files\NetWaiting\ABOUTN.INI');
try
//ini.ReadSections(Memo1.Lines);
ini.ReadSection('Reserved', Memo1.Lines);
finally
ini.Free;
end;
end;
<!--CodeE-->
섹션안의 내용을 불러오려면 ReadSection 함수를 쓰시면 되고
섹션을 불러올려면 ReadSections함수를 쓰시면 됩니다.
안에 있는 내용이 진짜로
김길동
홍길동
박길동
최길동
요런 식이라면 그냥 Text파일을 읽듯이 TStringList를 쓰시면 됩니다.
<!--CodeS-->
var
ini : TIniFile;
begin
ini := TIniFile.Create('C:\Program Files\NetWaiting\ABOUTN.INI');
try
//ini.ReadSections(Memo1.Lines);
ini.ReadSection('Reserved', Memo1.Lines);
finally
ini.Free;
end;
end;
<!--CodeE-->