이런식으로 ini 파일의 섹션과 키를 생성하고
Assignfile(f,FileName);
rewrite(f);
Writeln(f,' ////////////////////////////////////////////////////////');
Writeln(f,' [DARW]');
Writeln(f,' NO = ');
Writeln(f,' AUTHOR = ');
Writeln(f,' WRITTEN = ');
Writeln(f,' TIME = ');
Writeln(f,' COMMENT = ');
Writeln(f,' ////////////////////////////////////////////////////////');
Writeln(f,'');
이런 식으로 ini 파일을 생성하면 access violation error이 납니다.
myini := TIniFile.Create(savename);
for i:=0 to FCreateform.ComponentCount-1 do
begin
comp := FCreateform.Components[i];
if comp is TPanel then
with TPanel(comp) do
begin
myini.WriteInteger('DRAW','NO',j);
inc(j);
그 이유가 무엇인지가 궁금하고 어떻게 해야 하는지가 궁금합니다.