Re: Q: Closing down all Forms 5.0 windows from a trigger?

From: Ole Bredesen-Vestby <obv_at_ssb.no>
Date: Mon, 26 Apr 1999 05:37:29 GMT
Message-ID: <3723f9dc.1627199_at_news.eunet.no>


You can check if a spesified form is open, and then close it.

declare
  form_id FormModule;
begin
  form_id := Find_Form('MY_FORM');
  if form_id.id is not null then
    close_form(form_id);
  end if;
end;

  • Ole Bredesen-Vestby

On Mon, 19 Apr 1999 14:13:50 +0200, "J. Wegener NOSPAM" <xjw_at_xdde.xdk> wrote:

>Hello,
>Is there any way of determining which forms are active in a Forms 5.0
>application (on NT)? I need to be able to shut these forms down
>programmatically and re-issue the forms login after a password change.....
>Any help would be greatly appreciated, thanks in advance.
>Cheers,
>Johan



Ole Bredesen-Vestby
  Statistics Norway
  obv_at_ssb.no
Received on Mon Apr 26 1999 - 07:37:29 CEST

Original text of this message