Hello once again,
I have searched and not been able to implement any code to do what I need.
I need to have multiple timer events run on a single form, below is the code I have thus far and it is not working:
Code:
Static intCount As Integer
intCount = intCount + 1
If intCount = 1000 Then
If DCount("*", "Qry_User_Active_Check") = 0 Then
MsgBox "Your account has been disabled and you will now be logged out. Please contact your manager.", vbCritical, "Account Disabled"
DoCmd.Quit
Else
If intCount = 180000 Then
DoCmd.RunCommand acCmdRefreshPage
End If
End If
End If