Private Sub TxtNo_KeyPress(KeyAscii As Integer)
If (KeyAscii = 13) Then '如果是回车键,
TxtPass.SetFocus '把焦点移到TxtPass文本框,以备输入口令
Else
If Not (KeyAscii >= Asc("0") And KeyAscii <= Asc("9")) Then
'如果输入的不是数字
MsgBox ("账号必须为数字") '给出提示
KeyAscii = 0 '清除输入的字符
End If
End If
End Sub
Private Sub TxtPass_KeyPress(KeyAscii As Integer)
If (KeyAscii = 13) Then '如果输入的是回车键
If TxtPass.Text <> "Pass" Then '判断密码是否正确
If (MsgBox("密码错误", vbRetryCancel) = vbRetry) Then
'不正确,输出错误提示信息
TxtPass.Text = "" '清除文本框
TxtPass.SetFocus
Else
End
End If
Else
MsgBox "欢迎你使用本系统" '密码正确,提示你已进入系统
End
End If
End If
End Sub
这是代码.
请问如何在里面设置密码?
这是vbp文件,不明白用VB打开它就明白了
请问如何在里面设置密码?
请问如何在里面设置密码?
请问如何在里面设置密码?