Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Forms4.5 MDI window control ???

Re: Forms4.5 MDI window control ???

From: Michael T. Butler <Michael_Butler_at_WMG.COM>
Date: Fri, 26 Jan 1996 12:35:16 EST
Message-Id: <9601262115.AA13092@alice.jcc.com>


Ishaq,
In your On-New-Form trigger try this code:

SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,TITLE,'New Release Management');
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,WINDOW_SIZE, 700, 600);
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW, POSITION, 0,0);
or
 SET_WINDOW_PROPERTY('WINDOW0', WINDOW_STATE, MAXIMIZE); good luck,
Michael_Butler_at_wmg.com

Original Text
>From "Bangash, Ishaq" <Bangash_at_EXECUTONE.COM>, on 1/26/96 11:58 AM:
Hello Friends,
  I am trying to program the close selection in the control box (upper left hand side) of the MDI window in Forms4.5.6.5.5. Looks like I can not reprogram it. Although I could do it for other document windows inside it  by using when_window_closed trigger at form level. I want to this particular close to act differently as appose to other window, so I use following in my when_window_closed trigger:

  IF :system.event_window = 'WINDOW1'
 THEN
         ....
  ELSIF :system.event_window = 'WINDOW2'   THEN
          .....
  END IF; How can I reference the MDI window here?.

My second question is that how I can fix the size of the MDI window?.

I appreciate any help or suggestions,

TIA Ishaq Bangash
bangash_at_executone.com Received on Fri Jan 26 1996 - 16:15:36 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US