如何在Microsoft Access中创建递增变量?

时间:2017-08-08 07:59:15

标签: vba variables login access-vba ms-access-2010

在Microsoft Access中,我正在尝试创建和增加变量,以便在3次左右尝试后我可以锁定用户,但我无法使其工作。有没有人这样做过?如何做到这一点(全局变量或其他东西)??

请帮助,我已经尝试了很长时间。

干杯。

1 个答案:

答案 0 :(得分:0)

类似的东西:

Public Function Attempts() As Integer

    Static Attempt As Integer

    Attempt = Attempt + 1

    Attempts = Attempt

End Function

然后:

If Attempts() <= 3 Then
    ' Allow login.
Else
    ' Block user.
End If