剛剛寫過了類似的代碼 ,算了 再寫下
Private Sub Command1_Click()
Static i As Integer '說明下,假設 用戶名、密碼 分別是 yutian8802和 123456
If i > 2 Then
MsgBox "您已登錄三次了。。。程序將結束!"
End
Else
If Text1.Text = "yutian8802" Then
If Text2.Text = "123456" Then
MsgBox "登陸成功"
Else
MsgBox "密碼錯,請重新輸入!"
End If
Else
MsgBox "用戶名錯,請重新輸入!"
End If
i = i + 1
End If
End Sub
測試了 沒問題了 你試試!有什么問題 一起探討~
https://iknow-pic.cdn.bcebos.com/738b4710b912c8fc108d35abfc039245d688215e