Hi all,
Last year I asked the question is it possible to lock a field after editing.
Lysander (thanks Lysander) gave me the following code:
Then in the After_Update event of myName put the following code
I have used this this morning (in a different project to the original question) and it works while I'm still in the record. However when I exit the record and re-enter it the field can be edited again. Is there a way I can lock this field so that it can never be edited. I don't really want to lock the whole record if I can help it.
thanks
LG
Last year I asked the question is it possible to lock a field after editing.
Lysander (thanks Lysander) gave me the following code:
Then in the After_Update event of myName put the following code
Code:
myAddress.setfocus myName.locked=true myName.enabled=false
thanks
LG
Comment