uese IniFiles;
var
MyIniFile: TIniFile;
begin
MyIniFile := TIniFile.Create('myapp.ini');
//如果光写文名,就在Windows目录下
MyIniFile.WriteString('System', 'FormHeight',INTTOSTR(FORM1.Height));
MyIniFile.WriteString('System', 'FormWidth',INTTOSTR(FORM1.Width));
MyIniFile.Free;
end;
以上是写的方法!
----------------------------------------------------
var
MyIniFile: TIniFile;
begin
MyIniFile := TIniFile.Create('myapp.ini');
//如果光写文名,就在Windows目录下
FORM1.Height:=MyIniFile.ReadInteger('System', 'FormHeight',304);
FORM1.Width:=MyIniFile.ReadInteger('System', 'FormWidth',513);
MyIniFile.Free;
end;
以上的读的方法
---------------------------------------------------
写注册表和上面差不多!
Delphi帮助里学的...
如果有更好的方法,望请教;