View Full Version : Make a command button visible


Garyj
11-12-2003, 11:16 AM
I have several command buttons that should only be used on specific days. How do I get my command buttons to only be visible for five at the beginning of every year?

Thanks

llkhoutx
11-12-2003, 12:01 PM
if YourCondition = true then
me!cmdButton.visible=true
else
me!cmdButton.visible=false

end if