I am looking for a way to lock specific fields after data has been entered so that they can't accidently be changed if they are searching through the records is there a way to do this for Access 2007?
I have found another another thread but the ways listed did not work:
If Not IsNull(YourField) Then
YourField.Locked = True
Else
YourField.Locked = False
End If
or
Private Sub Form_Load()
FName.Locked = Switch(Nz(FName, "") <> "", True, True, False)
LName.Locked = Switch(Nz(LName, "") <> "", True, True, False)
StudentNum.Locked = Switch(Nz(StudentNum, "") <> "", True, True, False)
End Sub
I posted these in the OnLoad event and it tells me compile error method or data not found with .Locked highlighted
I have found another another thread but the ways listed did not work:
If Not IsNull(YourField) Then
YourField.Locked = True
Else
YourField.Locked = False
End If
or
Private Sub Form_Load()
FName.Locked = Switch(Nz(FName, "") <> "", True, True, False)
LName.Locked = Switch(Nz(LName, "") <> "", True, True, False)
StudentNum.Locked = Switch(Nz(StudentNum, "") <> "", True, True, False)
End Sub
I posted these in the OnLoad event and it tells me compile error method or data not found with .Locked highlighted
Last edited: