Forms 4.5 : How to display a window in a loop / end loop
From: Frederic Arslanian <frederic.arslanian_at_libertysurf.fr>
Date: Wed, 29 Sep 1999 11:29:16 +0200
Message-ID: <7ssmh2$aok$1_at_news4.isdnet.net>
I have the following pl/sql instructions in forms 4.5
Date: Wed, 29 Sep 1999 11:29:16 +0200
Message-ID: <7ssmh2$aok$1_at_news4.isdnet.net>
I have the following pl/sql instructions in forms 4.5
go_record(1);
go_item(block1.item);
loop
if :system.last_record = 'TRUE' then
exit;
end if;
/* This procedure proc_display_window, displays another window */ /* and should wait for a double clic on a record */
proc_display_window;
next_record;
end loop;
The problem is that the window is not displayed for each occurence of the loop, but only once at the end of the loop.
I try with the command synchronize, but the problem remains unchanged.
If you have any ideas.
thanks.
fred. Received on Wed Sep 29 1999 - 11:29:16 CEST