list box 3 [message #157288] |
Wed, 01 February 2006 07:39 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
eswaries
Messages: 41 Registered: January 2006
|
Member |
|
|
how can i delete all the items in the list box at run time?
|
|
|
|
Re: list box 3 [message #157846 is a reply to message #157783] |
Mon, 06 February 2006 12:27 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
RJ.Zijlstra
Messages: 104 Registered: December 2005 Location: Netherlands - IJmuiden
|
Senior Member |
|
|
as an alternative, straight from the 'Help':
/*
** Built-in: POPULATE_LIST
** Example: Retrieves the values from the current list item
** into record group one, clears the list, and
** populates the list with values from record group
** two when a button is pressed.
** Trigger: When-Button-Pressed
*/
BEGIN
Retrieve_List(list_id, 'RECGRP_ONE');
Clear_List(list_id);
Populate_List(list_id, 'RECGRP_TWO');
END;
Just do not do the last populate-group. Whit a bit of code you can now keep your record-group for when you need it again.
HTH,
|
|
|