R
raylopez99
hi,
I need to automatically lock a field after it's been written into and
has lost focus. Right now I'm using a checkbox, but I want to lock
automatically once the field is dirtied (written into) and it loses
focus.
Actually I need to lock a row, but a field is a good start--I can
replicate the code for each field in a row I guess.
Any ideas?
RL
What I'm using now; it works, but you manually have to check a
checkbox, and I want to automate this:
If boolcheckbox = True Then
field001.Locked = True
Else
field001.Locked = False
End If
I need to automatically lock a field after it's been written into and
has lost focus. Right now I'm using a checkbox, but I want to lock
automatically once the field is dirtied (written into) and it loses
focus.
Actually I need to lock a row, but a field is a good start--I can
replicate the code for each field in a row I guess.
Any ideas?
RL
What I'm using now; it works, but you manually have to check a
checkbox, and I want to automate this:
If boolcheckbox = True Then
field001.Locked = True
Else
field001.Locked = False
End If