【问题标题】:a button for change item properties visible or not更改项目属性可见或不可见的按钮
【发布时间】:2019-08-05 09:49:34
【问题描述】:

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

set_item_property('TEXT_ITEM17', visible, property_false);
set_item_property('TEXT_ITEM17', visible, property_True);

我需要把它放在if语句中吗?

【问题讨论】:

  • 这个按钮应该做什么?设置可见、不可见、切换?
  • 请说明您的要求。
  • 是的,我需要按下按钮来显示该项目并再次按下以隐藏它

标签: oracle oracle11g oracle10g oracleforms


【解决方案1】:

你可能需要这个:

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;

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-06-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多