Once a record is created, grey out a certain field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to grey out a field after the record is created so the user
cannot edit it anymore.

Thanks in advance,
John
 
John G said:
Is there a way to grey out a field after the record is created so the
user cannot edit it anymore.

Possibly with code for the form's Current event:

Private Sub Form_Current()

Me!YourControlName.Enabled = Me.NewRecord

End Sub
 
Back
Top