You could set the Form's AllowEdits property to False, you just need to determine how you are going to identify records you wish to protect and then do a logical test in the form's On Current event and use something like;
Code:
If [I][COLOR="Red"]Test for protect indicator[/COLOR][/I] Then
Me.AllowEdits = False
Else
Me.AllowEdits = True
End If