Canvas - Graphic object properties [message #384528] |
Wed, 04 February 2009 03:59 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
hrabiabw
Messages: 4 Registered: February 2009
|
Junior Member |
|
|
The problem is as following:
I’ve got a form where objects are situated on two tab pages. A number of text_items are placed on rectangle graphic objects. My goal is to control visibility of those objects depending on certain conditions:
With text items correctly works:
QUANTITY_ID ITEM;
QUANTITY_ID := find_item('PRODUCT.QUANTITY');
set_item_property (QUANTITY_ID, visible, property_false);
With graphics object I’m facing the problem with reaching the item:
G_QUANTITY_ID ITEM;
G_QUANTITY_ID := find_item('?????????????.G_QUANTITY');
Placement of the object:
Forms -> Canvases -> Tab Pages -> [Product] -> Graphics -> [G_QUANTITY]
Where:
[Product] – Name of the tab page
[G_QUANTITY] – Rectangle graphic object
I’ll appreciate any kind of help. Thanks in advance.
|
|
|
|
|