J
JeffT
I want to keep other users from changing data in a field but allow edits to
other fields. I found the following code here and thought it would work
however I keep getting the method or data member not found message. What am I
missing. I've made sure DAO 3.6 is checked in the references.
Here is the code I'm using:
Private Sub Form_Current()
Dim db As DAO.Database
Dim Rs As DAO.Recordset
Me.ASONumber.Locked = Not Me.NewRecord
End Sub
other fields. I found the following code here and thought it would work
however I keep getting the method or data member not found message. What am I
missing. I've made sure DAO 3.6 is checked in the references.
Here is the code I'm using:
Private Sub Form_Current()
Dim db As DAO.Database
Dim Rs As DAO.Recordset
Me.ASONumber.Locked = Not Me.NewRecord
End Sub