D
Denise
Hello,
I have a subform [frmClient].[subfrmAssess] that contains
a button [cmdOpenPop] that I only want to show when there
is data in a date field [txtDate]. I have the following
code in the 'after update' command of txtDate:
if me.txtdate is not null then
me.subfrmAssess.cmdOpenPop.visible = true
else
me.subfrmAssess.cmdOpenPop.visible = false
end if
This is not working....can someone help me please? I
also want the button to hide again if someone removes
data from txtDate.
Thanks!
Denise
I have a subform [frmClient].[subfrmAssess] that contains
a button [cmdOpenPop] that I only want to show when there
is data in a date field [txtDate]. I have the following
code in the 'after update' command of txtDate:
if me.txtdate is not null then
me.subfrmAssess.cmdOpenPop.visible = true
else
me.subfrmAssess.cmdOpenPop.visible = false
end if
This is not working....can someone help me please? I
also want the button to hide again if someone removes
data from txtDate.
Thanks!
Denise