Load the form with those fields disabled in the Form_Load event:
Me.control.Enabled = False
Have an unbound control for users to enter a password. Check the password against a password held in a table. Then enable those fields if the password is correct
Me.control.Enabled = True
Ensure that the Form_Current event also disables the fields so that the fields are disabled when going from record to record.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.