Hi everyone,
I am trying to have a command button visible or not visible on a continuous form base on the value of a text box.
So for instance,
the problem i am having is is either shows for all records or does not show at all...i would like it to show for individuals recoreds based on that text box value.
How could i acheive this?
Thanks
Sylvain
I am trying to have a command button visible or not visible on a continuous form base on the value of a text box.
So for instance,
Code:
if txtQTSBO.Value > 0 then
cmdBO.visible = false
else
cmdBO.visible = true
end if
How could i acheive this?
Thanks
Sylvain