I have tested the following code, it locks the field t1 except the last record...
You may try and/or improve it...
Private Sub Form_Current()
If id.Value < DMax("[id]", "[YourForm]") Then
t1.Enabled = False
Else
t1.Enabled = True
End If
End Sub
(in the table remove the ID default value as 0...