Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: When-window-activated trigger in multiple-window form
I believe there is a system variable system.event_window that contains the name of the window
activated.
<when window activated>
IF :SYSTEM.EVENT_WINDOW = 'WIN_MAIN'
THEN
...
ELSIF :SYSTEM.EVENT_WINDOW = 'WIN_POPUP'
THEN
...
and so on
"Nick" <aroughguy_at_nsp.toughguy.net> wrote in message news:UxZh9.6134$Sr6.216552_at_ozemail.com.au...
> Hi
>
> I have a form with 3 windows & canvases.
> Can I make some codes run when a specific window is activated?
>
> The when-window-activated fires whenever a (any) window activates.
>
> Thanks
> Nick
>
>
Received on Wed Sep 18 2002 - 14:49:06 CDT
![]() |
![]() |