G
Guest
I wish to stop users from changing text in a field once a record has been
created. I have tried a couple of methods:
On form current event:
If NotIsNull(me.area) Then
Me.area.enabled = False
Me.area.locked = True
End If
Also tried.
Again on form current event
me.allowedits = NotIsNull(me!area).
Neither one of these appears to work. Can anyone point out to me what I am
doing wrong.
Thanks in anticipation.
created. I have tried a couple of methods:
On form current event:
If NotIsNull(me.area) Then
Me.area.enabled = False
Me.area.locked = True
End If
Also tried.
Again on form current event
me.allowedits = NotIsNull(me!area).
Neither one of these appears to work. Can anyone point out to me what I am
doing wrong.
Thanks in anticipation.