vb 口令输入错误超过3次就禁止输入 怎么搞 网上的答案都不行的 急急急啊

2024-10-31 09:19:56
有3个网友回答
网友(1):

dim p as integer
private sub command1_click()
if text1="123456" then
msgbox "通过"
else
p=p+1
msgbox "密码错误 " & p & " 次"
if p>3 then
msgbox "密码错误超过 3 次!"
end
end if
end if
end sub

网友(2):

最简单的方法,超过三次就退出
或者禁用
具体把你用的代码发上来,帮你修改

网友(3):

是输入框enable属性为false,或者直接退出