ITEMS [message #115645] |
Wed, 13 April 2005 06:20  |
dbarone
Messages: 20 Registered: March 2005
|
Junior Member |
|
|
Is there a built-in or a function in Oracle Form that returns me the name of all the items in a block, or how many items are there is the block...or something like that.
|
|
|
Re: ITEMS [message #115752 is a reply to message #115645] |
Thu, 14 April 2005 03:38  |
 |
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
In the get_block_property there is 'first_item' and 'last_item'.
In the get_item_property there is 'nextitem'.
Start a loop from 'first_item', get the 'nextitem' until you reach the 'last_item'.
This will typically give you all the items. If you have manually set the 'next navigation item' on an item so that it jumps another item then I think that that second item will not appear during the processing of the loop.
|
|
|