MDI window

Does anyone know how to get rid of the MDI window at run time?
I could achieve this by setting the data window to be a dialog
window, and set the set_window_property(forms_mdi_window,
window_state, minimize). Is there a better way to do than
that?
Thanks in advance.
John
null

Lets say you are calling a form named Emp located in c:\
directory.
Create an icon and give the command line as
f50run32 c:\emp scott/tiger usesid = YES
This will open the form in SDI
Hope this will work.
Bhaskar
john (guest) wrote:
: Does anyone know how to get rid of the MDI window at run
time?
: I could achieve this by setting the data window to be a dialog
: window, and set the set_window_property(forms_mdi_window,
: window_state, minimize). Is there a better way to do than
: that?
: Thanks in advance.
: John
null

Similar Messages

  • How to maximize the MDI window in web form.

    Dear all,
    i am new to jdeveloper. i am using form 10g there is a problem which is not handle by me in forms.
    i want to maximize the MDI window in web form.
    can jdeveloper solve my problem.
    i am new please anyone tell me step by step.
    thanks
    Muhammad Nadeem
    [email protected]

    Hi,
    no. Please use the Forms built-in set_window_property maximize
    Forms questions are answered here: Forms
    Frank

  • Get rid of the MDI window

    Does anyone know how to get rid of the MDI window at run time?
    I could achieve this by setting the data window to be a dialog
    window, and set the set_window_property(forms_mdi_window,
    window_state, minimize). Is there a better way to do than
    that?
    Thanks in advance.
    John
    null

    the previous people were close... you need to do
    f50run32 Module=xxxx userid=xxxx usesdi=yes
    (not usesid like afore mentioned.
    Hope this helps.
    Paul
    Steve (guest) wrote:
    : set the console window = null on the form module property
    sheet.
    : john (guest) wrote:
    : : Does anyone know how to get rid of the MDI window at run
    time?
    : : I could achieve this by setting the data window to be a
    dialog
    : : window, and set the set_window_property(forms_mdi_window,
    : : window_state, minimize). Is there a better way to do than
    : : that?
    : : Thanks in advance.
    : : John
    null

  • HOW TO HIDE MDI WINDOW INFORMS 9I WHEN THEY RUN IN WEB BROWSER

    Hi. Will any body tell me how to hide the default MDI window title in Forms 9i when it run in Web Browser. I am using the "Look and feel" property as "Generic" in Formsweb.cfg file. I tried the RESIZE,POSITION,MINIMIZE,VISIBLE FALSE properties of SET_WINDOW_PROPERTY FUNCTION, But the horizontal Bar at the top displaying "Window" on it, is displayed. OR some time form is not displayed at all. So plz help me. This kindness of any one will be appriciated.
    Regards
    Inayat Qazi

    Hi Inayat,
    To remove the ORACLE icon, change the line "logo=" to "logo=x" in file formsweb.cfg.
    I am not sure if it is possible to remove the standard-menu (horizontal bar with word Window, as you describe it), because as far as I know it is inheritance for the Windows OS. In other words, removing the standard menu can only be achieved if you run on another OS.
    Kind regards.

  • Forms 10g Migration : Menu attached to form appears on MDI Window.

    Hi All ,
    On migration of forms 5/6i into forms 10g observed that the Menu Module attached to a form appears on MDI window and not attached to the main window of the form.
    How do we ensure that the Menu and the Horizontal toolbar attached to the form appear on the main window of the form and not on the MDI Window ?
    Kindly help please ...
    Thanks ,

    Hi,
    I have same issue. Did you find any solution ?
    Please let me know.
    Thanks.

  • Remove MDI Window Title Bar

    I want to remove the MDI Window Title Bar, because i already have noticed in this forum that is almost impossible to remove the whole MDI window in Forms 10g...
    Is it possible??

    Hi,
    I need to look at the sources again, but from what I remember, you can't
    Frank

  • How to Maximize MDI window in Dev-10g

    Buddies....How can we maximize MDI window (Browser's window) in Dev-10g while calling a form or report?

    hi
    try this
    when-new-form-instance trigger.
    declare
    fm_id formModule;
    begin
    fm_id :=find_form ( :system.current_form);
    set_form_property(fm_id,defer_required_enforcement,property_true);
    set_window_property(forms_Mdi_window,window_state,Maximise);
    set_window_Property(forms_Mdi_window,title,'MDI title');
    set_window_property('window1',window_state,Maximise);
    set_window_property('Window1',Title, 'Form title');
    end;
    sarah

  • Urgent : Sizing MDI Window for Forms running on Web

    Hi,
    I am using Developer 6.0 and deploying forms on Web. I use
    SEPERATE_FRAME = YES in my HTML so that the form appears outside
    the browser in a seperate Window. The problem I am facing is the
    initial size of the MDI Window is very small compared to the
    Application window, so I have to maximise the MDI Window
    manually in order to see my Application Window completely.
    On Client Server I can get the handle of this MDI window using
    FORMS_MDI_WINDOW and maximise it programatically. On Web
    FORMS_MDI_WINDOW returns NULL as a result I cannot maximise the
    same.
    1. Is there any way to get the handle of MDI Window on web ?
    2. If not is there a way to set the size of MDI window thru any
    parameters or setting in HTML file or by other means ?
    Thanx in advance
    Ravi
    null

    Hello,
    you must generate a CWeb - cartrigde for your forms with a
    separate frame in the Oracle Application Server_v4.0.7.
    In the height and wight values for the frame set your size.
    It works very well.
    All the best
    Klaus
    Ben Eadington (guest) wrote:
    : I have been having the same problem. I found a way to correct
    : it by altering the Main.class file within f60all.jar (see the
    : thread started Sept. 1) The problem is that I cannot resign
    the
    : jar file. That must be done by Oracle. The window size issue
    : is apparantly a bug in Dev. 6. Hopefully they will get it
    fixed
    : soon. I would like to hear if anyone has had any luck getting
    a
    : patch or anything from Oracle.
    : Ron Lindhoudt (guest) wrote:
    : : I believe you have to change an Oracle class. There is
    another
    : : thread about this in the forum not more than a couple of
    weeks
    : : ago.
    : : Steve (guest) wrote:
    : : : I believe you want to maximize the console window not the
    : : : mdi window. There is no mdi window in web forms or any
    other
    : : : operating system environment other than microsoft.
    : : : Ravindra Channe (guest) wrote:
    : : : : Hi,
    : : : : I am using Developer 6.0 and deploying forms on Web. I
    use
    : : : : SEPERATE_FRAME = YES in my HTML so that the form appears
    : : : outside
    : : : : the browser in a seperate Window. The problem I am
    facing
    : is
    : : : the
    : : : : initial size of the MDI Window is very small compared to
    : the
    : : : : Application window, so I have to maximise the MDI Window
    : : : : manually in order to see my Application Window
    completely.
    : : : : On Client Server I can get the handle of this MDI window
    : : using
    : : : : FORMS_MDI_WINDOW and maximise it programatically. On Web
    : : : : FORMS_MDI_WINDOW returns NULL as a result I cannot
    : maximise
    : : the
    : : : : same.
    : : : : 1. Is there any way to get the handle of MDI Window on
    : web ?
    : : : : 2. If not is there a way to set the size of MDI window
    thru
    : : : any
    : : : : parameters or setting in HTML file or by other means ?
    : : : : Thanx in advance
    : : : : Ravi
    null

  • MDI windows on the WEB

    Help
    Are MDI windows supported under the Forms server in Forms
    6.0? I get conflicting answers to this when reading throught the
    documentation delivered on the EAP CD.
    Thanks
    Geoff Coleman
    null

    Geoff,
    Yes, they are.
    Geoff Coleman (guest) wrote:
    : Help
    : Are MDI windows supported under the Forms server in Forms
    : 6.0? I get conflicting answers to this when reading throught
    the
    : documentation delivered on the EAP CD.
    : Thanks
    : Geoff Coleman
    null

  • How to privent the users from resizing/maximizing/minimizing the mdi window

    In http://forms.pjc.bean.over-blog.com/60-index.html i read about 'A JavaBean to handle the Forms applet's frames' .
    In formsframe.java It is written that the author is Francois Degrelle so i want to ask Francois: My goal is to privent the users from resizing/maximizing/minimizing the mdi window. I have jre 1.6.0_10 which jar file do I need formsframes5.jar or formsframes.jar (those files are in formsframes.zip)
    thanks

    lidochca wrote:
    Hello, please help me to solve the problem !!Key Loggers, Spyware. The solution is not to write such reprehensible crap.

  • Forms mdi window

    hi
    When i execute a form.fmb, i should not get the mdi window , only the canvas which i have placed my items should get displayed.
    is it possible? or...

    If you are in Client Server you can run in Single Document Interface mode - USESDI=YES on the command line

  • How can I disable Minimize, Restore & Close buttons of MDI window?

    I'm using Forms6i on Windows XP
    How can I disable Minimize, Restore & Close buttons of MDI window?
    An urgent reply would be apprecaited.
    MURUGESAN.T

    in windows property
    list of this
    close allowed
    move "
    resize "
    maximize "
    minimize "
    all to set "no"

  • Closing the MDI Window...

    Hi Guys,
    I have a set of 10 forms which are being called from a
    another form through Forms Menu. Lets take the scenario as Form
    A opens Form B via "Open Form". From there on using Forms Menu,
    Form B opens the rest of the 8 forms using "Call Form". My
    requirement is that incase the MDI Window is closed all the
    forms should get closed along with it. Suppose I open Form E
    from Menu of Form B (Call Form) and then Open Form D from Menu
    of Form C (Call Form). Currently if I have to close the
    application, I have to indivisually close all the forms. So If
    there are 5 forms open I have to close the MDI Window five
    times. Is there a method by which on click of a single button
    the Application as a whole should close, instead of user having
    to closde all the forms individually.
    Please help me if any body has done this before. Is there a
    way to find the process id of the current forms session at the
    Windows level, in which case I can right a C++ progam to kill
    the process itself.
    Please reply asap...
    Regards,
    Vcrum...

    Bogdan,
    we are trying to close the sole document window we have inside of our MDI application, leaving the application itself open. By comparison, you can leave MS Word application window open without having any document windows in it. I am starting to doubt it's possible at all in Forms. To re-phrase the question, is having at least one document window open at all times a requirement for MDI application?
    Thank you.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Bogdan Dincescu ([email protected]):
    I understand that the one document window is the main window of the form that is curenntly running and that you have one only form running. Closing that window you close that form, so how would the application know any better then closing.
    Please be more specific as to what you really need to do.
    Best wishes,
    BD.<HR></BLOCKQUOTE>
    null

  • Want to change Form MDI Window default icon as well as default window icon

    Hi,
    I am using oracle forms 10g. I need to change the mdi window default icon as well as default window icon of inner form. But i do not know the way. Pls help me.

    http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    webutil lets you access the client machine from webforms. you'll need to install it on the application server and include the webutil library and object group in the form which will change the MDI window's icon (probably the first form in the application).

  • Change MDI WINDOWS ICON

    Hello Gurus,
    We were trying to change the MDI window ICON in forms through the procedure given in d2kutil.pll We did successfully finished and its running fine.
    But when we run the same form through a command prompt by passing necessary useir id credentials and parameters for the form(s) its throwing a error frm-90734 internal pl/sql error occured.
    i.e we are running the form like below from the command prompt.
    ifrun60.exe userid=scott/tiger@db module=d:\forms\icontest.fmx.
    But If we include the path of the EXE in the command prompt It does work very well.
    i.e d:\forms6i\bin\ifrun60.exe userid=scott/tiger@db module=d:\forms\icontest.fmx.
    Respective Dll and Pll is available in the same folder and has been included in FORMS60_PATH as well.
    Why is it due to, any suggestions on this will be much appreciated.
    Thanks

    Hi
    We did tried copied it in the current folder from where the fmx is running.
    Its 6i Client Server only.
    Thanks

Maybe you are looking for

  • Why does iPhone rate whole album when it syncs to iTunes rather than just single song sometimes?

    I wasn't sure if this should be an iTunes or iPhone discussion, so here goes! I am very particular about rating my music.  Every day at work, as songs play on my iPhone, I give them a star rating.  This star rating then transfers to iTunes when I syn

  • How to Best Import QuarkXpress 8.0 Files into InDesign CS5

    Folks, Searched the forum, but I'm only finding info on older versions of Quark and InDesign. I've got a ton of end user documents in QuarkXpress 8.0 that I need to import into InDesign CS5.  (These are installation and operation manuals for data and

  • Process chains data load

    Can any body help in data scheduling issue I am able to load data manually the issue is i selected some of the datafields  in InfoPackage  data selection field and saved . i put this Ip in the process chain.now the issue is i don't to load data immed

  • Backups in Multiple Folders

    When I go into my Time Machine Backups drive I see two folders of backups, my iMac and iMac2. When I go into the actual Time Machine program I can only access the backups in my iMac folder, not any which are in the iMac2 folder. I'm not able to move

  • HT1766 how do I delete a previous backup? iTunes is telling me to do that

    When syncing I get an error message saying the last backup is corrupt, to delete it and rebackup. I can'f figure out how to delete a back up - or where it even is located.