W
WildlyHarry
I have a form with a number of different Tab Controls. Each tab corresponds
to a field on the main section of the form. I want the Tab Controls to only
be visible when there is data in the specific fields on the main section.
I have tried the following code with no success:
After Update Property
if me.action_item_1.value = Null then
me.tab1.visible = false
else
me.tab1.visible = true
end if
me.refresh
in conjunction with
Current Property
if me.action_item_1.value = Null then
me.tab1.visible = false
else
me.tab1.visible = true
end if
me.refresh
Does anybody have any suggestions to resolve my issue? Thanks in advance.
to a field on the main section of the form. I want the Tab Controls to only
be visible when there is data in the specific fields on the main section.
I have tried the following code with no success:
After Update Property
if me.action_item_1.value = Null then
me.tab1.visible = false
else
me.tab1.visible = true
end if
me.refresh
in conjunction with
Current Property
if me.action_item_1.value = Null then
me.tab1.visible = false
else
me.tab1.visible = true
end if
me.refresh
Does anybody have any suggestions to resolve my issue? Thanks in advance.