Re: Popup windows [message #80272] |
Sun, 01 September 2002 11:14 |
Julie Toft
Messages: 9 Registered: August 2002
|
Junior Member |
|
|
Sirasha,
If I understand your question correctly, you want to enter a search condition on a pop up form and search through the rows in another form & block.
If that's the case, I've done that by coding a when-button-pressed trigger on your search button that sets a where-clause string. Then have it set the where clause of the destination block, go block and execute query.
When-Button-Pressed Trigger
v_where := ' col1 = '||:queryblock.item;
set_block_property('resultblock', DEFAULT_WHERE, v_where);
GO_BLOCK('resultblock');
Execute_Query;
|
|
|