Password Help

  • Thread starter Thread starter Guest
  • Start date Start date
I think table-level security is as far as Access inherent security goes. What
you can do is to discourage your users from opening the tables directly (by
not showing the database window, by creating a separate front end, etc.), and
then (on your form used to edit the records that involve this field) require
a password to unlock and/or enable the control that is bound to that field.
For example, you could put this on a button:

Private Sub ButtonUnlock_Click()
If InputBox "Please enter password" = "12345" Then
Text1.Enabled = True
Else
Text1.Enabled = False
End Sub

Private Sub Form_Open (Cancel As Integer)
Text1.Enabled = False
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Windows 10 W10 password prob. 2
Excel Protection 2
Are password protected WiFi networks secure? 3
Excel file with 52 sheets 1
Wifi Network Issue 0
Password Protected Computers 4
Access 2007 password problem 3
Password errors 3

Back
Top