将变量写入INI文件吧,案例如下:procedure TForm1.FormCreate(Sender: TObject);var ReturnStrChar;begin ReturnStr:=StrAlloc(20)
GetPrivateProfileString('某系统','Password','',ReturnStr,20,'./Personal.ini')
IF ReturnStr='' then begin showmessage('as')
WritePrivateProfileString('某系统','PassworD','默认值','./Personal.ini')
end;end;程序关闭的时候,调用WritePrivateProfileString函数。