更改项目属性的按钮是否可见

时间:2019-03-14 13:16:43

标签: oracle oracle11g oracle10g oracleforms

看看我在按钮中编写的代码(按下按钮时)

[http]
    emptyauth = true

是否需要将其放入if语句中?

1 个答案:

答案 0 :(得分:4)

您可能需要这个:

if get_item_property('TEXT_ITEM17', visible) = 'TRUE' THEN
     set_item_property('TEXT_ITEM17', visible, property_false);    
else
     set_item_property('TEXT_ITEM17', visible, property_true);
end if;