|
本帖最后由 sunny617 于 2009-9-11 17:47 编辑
Global $ps=IniRead(@ScriptDir & "\system.ini","password","pass","")
Global $jm2=_StringEncrypt(0,$ps,"yiyaojiemijiuzh","administrators")
$Pass=iniread(@scriptdir & "\system.ini","password","pass","")
$foo=1
While 1
$foo+=1
$File = InputBox("密码检测", "请输入您的密码:", "", "*", 180, 80, -1, -1)
If @error = 1 Then
MsgBox(64, "错误", "谢谢使用,正在退出!")
Exit
Else
If $foo=4 Then
MsgBox(64,"错误","错误次数超过三次,再见!")
Exit
EndIf
If $File <> $pass Then
MsgBox(4096, "错误", "密码不符 - 请重试!")
Else
"这里想跳过去,"
EndIf
EndIf
WEnd
=============================
如上面的....如果密码正确的,我怎样在ELSE处跳过直接往下运行呢
我没办法在下面的代码加个自定义函数,想通过跳过来解决,
能做到吗? |
|