Locking Individual Fields within a Form

Joined
Apr 21, 2006
Messages
1
Reaction score
0
I am in desperate need of some technical advice/expertise. I have a database with numerous fields which I would like to lock (permit erasing, changing) once the user moves to the next record.

I have began by creating an event procedure...

private sub form_current()
me.fieldnamehere.enabled = me.newrecord
end sub

my problem is that I am unable to repeat this procedure for other fields without error messages, runtime errors. These messages deal with the focus and/or the beforeupdate/current of the language.

Any ideas how I can fix this?
 
Back
Top