"On Current" property question

Hi ms Kathy
In the 'on current' event you could put
if isnull(me.Fieldname1) then
me.fieldname1.allowedits = false
else
me.fieldname1.allowedits = true
end if
ditto for field 2 to n

If you know how to use a 'for each object' loop (look it up) you could say
for each object in my form
if isnull(object) then
object.allowedits = false
else
object.allowedits = true
end if
loop

Hope that gets your problem solved.
 

Users who are viewing this thread

Back
Top Bottom