Search results

  1. W

    Getting error message, but code works?

    I installed an Audit Trail on my database. It works throughout the entire database. However, in one section of the database, on a single form, I keep getting an error message: Object doesn't support this property or method. Now, the audit still works. But i keep getting this message. What gives?
  2. W

    Auto Logout

    The code below works great. The thing is, I need it to be modified a bit. I have 5 user types for this database. I wonder if there is a way to modify it so only certain user types will be logged out? Or, if can be set to only log out a user who is idle? Option Compare Database Option Explicit...
  3. W

    User Change Password

    So I have a login system established with loginID, passwords, and different user types. I also have a User Change Password form. However, this form only allows the user to change their password to something new. Also, for some reason the form only allows the first user in the table (ID#1) to be...
  4. W

    Password Attempts

    I want to limit password attempts to three, but I am unsure how. I am new to coding. Please help? Here is what I have so far: Private Sub Command1_Click() Dim User As String Dim AccessLevel As Integer Dim TempPass As String Dim ID As Integer Dim WorkerName As String Dim...
Back
Top Bottom