G Guest Nov 7, 2004 #1 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
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
D Dirk Goldgar Nov 7, 2004 #2 John G said: Is there a way to grey out a field after the record is created so the user cannot edit it anymore. Click to expand... Possibly with code for the form's Current event: Private Sub Form_Current() Me!YourControlName.Enabled = Me.NewRecord End Sub
John G said: Is there a way to grey out a field after the record is created so the user cannot edit it anymore. Click to expand... Possibly with code for the form's Current event: Private Sub Form_Current() Me!YourControlName.Enabled = Me.NewRecord End Sub