Access levels

kenshinx1

Registered User.
Local time
Today, 04:13
Joined
Nov 21, 2006
Messages
24
Iv got a user table with an admin record and head teacher record with the highest access level

I then have 2 teacher records with a lower access level

The admin and headmaster have access to the whole system this includes assigning user name and passwords. However I don't want the head master to be able to change the admins password, so is there a way to lock this record or even hide it from a user form
 
Depends how secure you want it to be. At its simplest, you could base the form on a query that has a criterion to exclude the admin record.
 
what would I need to write in the criteria box, I have never done anything like that before
 
Whatever the record holds that identifies it as the admin record. Presumably the primary key.

How have you got this far without using criteria in queries? Or did you just not understand what I said? If so, I appologise!
 
Iv done queries before but I have never been able to not show a record on the query. in this case a admin record
 
Your criterion would be something like:
Not "Admin"
 

Users who are viewing this thread

Back
Top Bottom