It was suggested in one of the posts to use the following code in Form Current event to disable all the fields on a form of the current record so when I click on the yes/no field it would disable the fields if yes or enabled if it was changed to no and stay that way unless clicked on again. I am not quite sure what was meant by changing the bound control to true as the post on the subject had it. Any suggestions because I use the code and it doesn't work.
If Me.LockedId Then
Me.AllowEdits = False
Else
Me.AllowEdits = True
If Me.LockedId Then
Me.AllowEdits = False
Else
Me.AllowEdits = True