为什么读完ini文件的pw的值就会把pw这项删掉?14个饼(14分)

  • 主题发起人 主题发起人 wlyft
  • 开始时间 开始时间
W

wlyft

Unregistered / Unconfirmed
GUEST, unregistred user!
为什么读完ini文件的pw的值就会把pw这项删掉?程序如下:<br>procedure TForm2.BitBtn1Click(Sender: TObject);<br>begin <br>&nbsp; &nbsp;if edit1.text=inttostr(GetPrivateProfileint('system','pw',0,'C:/WINDOWS/SYSTEM/wly/wlysystem.ini')) then<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp;WritePrivateProfileSection('system','f1bit2en=1','C:/WINDOWS/SYSTEM/wly/wlysystem.ini');<br>&nbsp; &nbsp;close;<br>&nbsp; &nbsp;form2.Free;<br>&nbsp; &nbsp;end<br>&nbsp; &nbsp;else<br>&nbsp; &nbsp;showmessage('Error:Password');<br>end;<br>至于饼的问题,是因为查找我提的问题就比较容易,我也比较喜欢4
 
procedure TForm2.BitBtn1Click(Sender: TObject);<br>begin <br>&nbsp; &nbsp;if edit1.text=inttostr(GetPrivateProfileint('system','pw',0,'C:/WINDOWS/SYSTEM/wly/wlysystem.ini')) then<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp;WritePrivateProfileString('system','f1bit2en','1','C:/WINDOWS/SYSTEM/wly/wlysystem.ini');<br>&nbsp; &nbsp;close;<br>&nbsp; &nbsp;form2.Free;<br>&nbsp; &nbsp;end<br>&nbsp; &nbsp;else<br>&nbsp; &nbsp;showmessage('Error:Password');<br>end
 
恐怕不是前卫兄说的问题吧,<br>它要是 WritePrivateProfileSection 这样写:<br>1、编译就通不过<br>2、和f1bit2en有关,也不会删了 pw 的值吧
 
sorry,我看错了,是前卫说的这个问题
 
非常感谢各朋友的帮助,此问题我已解决了!
 
后退
顶部