S
Sheldon
I inserted this code but I'm getting error message: Object
Required. Please help.
Thanks.
Sheldon...
Is there a value in the field before you update it, or is
it an empty field.
If what you want is someone to fill in an empty field then
lock the field for good use:
do this on Form Open:
if me.fldname.value is not null then
me.fldname.locked = true
else
me.fldname.locked = false
endif
..
Required. Please help.
Thanks.
Sheldon...
Is there a value in the field before you update it, or is
it an empty field.
If what you want is someone to fill in an empty field then
lock the field for good use:
do this on Form Open:
if me.fldname.value is not null then
me.fldname.locked = true
else
me.fldname.locked = false
endif
..