FRM-40105
679109Jan 9 2009 — edited Jan 10 2009I have a question. I have my form item :DATABLOCK.ITEM in the property palette set Visible to No. I have a WHEN-BUTTON-PRESSED trigger on a button that trys to set the property at run time to visible=yes. here is the pl/sql code:
BEGIN
SET_ITEM_PROPERTY(DATABLOCK.ITEM, VISIBLE, property_true);
END;
When I run the form and click the button I get the following error:
FRM-40105 Unable to resolve reference to item.
All that I want to do is make the item visible at the click of the button. Any help?