Re: Forms 5.0 - Closing all forms

From: Jason Gould <jagould_at_cisco.com>
Date: Tue, 20 Oct 1998 13:35:28 -0700
Message-ID: <362CF410.7797B3F4_at_cisco.com>


You can do this using global variables.

On the "exit application" pull-down set :

:GLOBAL.exit := 'out';
EXIT_FORM; Then, after each call form statement :

BEGIN CALL_FORM(.......); IF :GLOBAL.exit = 'out' THEN

   EXIT_FORM;
END IF; END; Mike Layng wrote:
>
> Hi,
>
> This may be a simple problem (hopefully).
>
> I have a forms application that has an initial form that uses CALL_FORM to
> open up various forms. The result of this is that I can end up with 15 or
> 16 forms open at once.
>
> I want to be able to have an "Exit Application" item on my menu which will
> exit all of the forms, but I am not sure how to achieve this.
>
> Thanks,
> Mike.
Received on Tue Oct 20 1998 - 22:35:28 CEST

Original text of this message