本帖最后由 autt 于 2011-9-21 22:56 编辑
这个主要的难点(对我来说)差不多解决了,余下的应该就简单了
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <file.au3>
$Form1 = GUICreate("请耐心等待", 639, 460, -1, -1)
GUISetState()
local $i=0
Local $T_key="aabbcc"
AdlibRegister("timer",2000) ;2秒刷新一新
Func timer()
$i=$i+1 ;这个是自己加的,为验证程序工作工常否
IniWrite("vfg.ini","PE EXPLORER"&$i,$T_key,$i) ;写文件,
EndFunc
;以下为退出要使用密码,但是在任务栏中密码无效果,右键可直接退出...
while 1
$nMsg = GUIGetMsg()
Select
case $nMsg=$GUI_EVENT_CLOSE
MsgBox("","warning","pls input the pwd to exit")
$pwd=InputBox("pls type the pwd","pls input the password to exit the program","","*")
if $pwd="22" Then Exit
EndSelect
WEnd
|