Mar 12, 2002 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 Is there a way that I can set up an After Update, Event Procedure on a form so that once data is entered into a field it is locked. Thanks
Is there a way that I can set up an After Update, Event Procedure on a form so that once data is entered into a field it is locked. Thanks
Mar 12, 2002 #2 luceze Programmer Joined Apr 26, 2001 Messages 842 Location US In the after update event of the field use this code: fieldname.locked=true where fieldname is the name of your field. HTH Eric Upvote 0 Downvote
In the after update event of the field use this code: fieldname.locked=true where fieldname is the name of your field. HTH Eric