MDI & SDI Windows in Forms 6i

Hello,
Can anyone tell me how to disable Minimize, Restore & Close Buttons of a MDI & SDI Window.
Reply at [email protected]
Thanx.

In the MDI window you cannot - but in the SDI window there are properties on the window to disable all those things.

Similar Messages

  • Maximize/Minimize MDI Child window

    Dear Members :
    I am on Oracle forms 10.1.2 and irrespective of whether value of separateFrame=true/false, when I try to maximize mdi-sheet window (within application frame), the whole thing flickers and after some time browser crashes. Does "maximize allowed" property not work for child windows in MDI application ?
    Behavior of minimize is also peculiar, as the the whole mdi application frame develops a vertical scroll, when I again try to resize the minimized mdi-sheet window, as it shows up with it's original size down from it's lower position; instead of getting back to where it originally appeared.
    I tried above both using JInitiator and JRE - but same behavior.
    Could anyone please suggest ?
    Thanks in advance.
    Atanu
    Edited by: user11184124 on Sep 28, 2011 3:09 PM

    ...If you want to make your voice heard to the VC++/MFC developer support people via Connect, that is a reasonable option.  If others vote the "me too" there, your suggestions might gather enough weight for some future action.
    <
    Robert, if you do post a bug report on Connect please post a link to
    your bug report back here so we can find it.
    I guess the bug report is really that Windows 8 doesn't draw MDI child
    windows in a consistent style to the top level frame window (I see the
    same thing using Forte Agent, so I don't think it's an MFC issue).
    For instance, if you are asking that MFC include some new visual manager(s) to support the newer Windows 8 appearance,
    Please, no more application specific "visual managers". Don't make it
    easy to make an inconsistent mess of UIs.
    I've just been saddled with a WPF application that's a right mess in
    that respect - some parts change correctly when the user changes the
    Windows scheme to high-contrast, while other parts use AvalonDock with
    its own theme idea of what the colors should be.
    Dave

  • Passing value from mdi child to parent form

    Hallo
    I design project in which is main window with mdi container and mdi child windows. My problem is that so i want to save value from TextBox1 from child form using main menu which is in main window. I don't know how to call content of TextBox1. Here is part
    of code about saving file.
    Private Sub MenuItem5_Click(sender As Object, e As EventArgs) Handles MenuItem5.Click
    If Me.ActiveMdiChild IsNot Nothing Then
    SaveFileDialog1.FileName() = "Nowa metryka"
    SaveFileDialog1.Filter() = "Metryka zaworu bezpieczenstwa (*.mzb) | *.mzb"
    If SaveFileDialog1.ShowDialog() = DialogResult.OK Then
    Dim ZapisywanieTekstu As New IO.StreamWriter(SaveFileDialog1.FileName)
    Dim varZapisywanyTekst As String = ZapisywanieTekstu.AutoFlush
    ZapisywanieTekstu.WriteLine("HERE SHOUL BE A CALL TO TextBox1 VALUE")
    ZapisywanieTekstu.Close()
    End If
    End If
    End Sub
    If somebody have any idea ho to call value of TextBox1 in child form using main form save menu plase give me any help.
    Thank You
    And Best Regards

    Hello,
    I'd ask in
    Windows Forms General.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog:http://unlockpowershell.wordpress.com
    My Book:Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Reg: To open a Browse Window Using Form Builder

    Dear All,
    I am trying to open a browse window using form builder.I am using forms 10g.
    I have user the following code.
    Declare
    l_file_name Varchar2(383);
    Begin
    l_file_name := webutil_file.file_open_dialog( );
    If
      l_file_name Is Not Null
    Then
      If
        :images.Rowid Is Not Null
      Then
        create_record;
      End If;
      client_image.read_image_file ( l_file_name, Substr ( l_file_name, Instr ( l_file_name , -1 ) ), 'images.images' );--block.item
    End If;
    End;I have attached the webutil.pll in attached library.
    It shows an error" WEBUTIL Object group not attached to this form".
    Can any one help me how to attach that object group.
    Thankx in advance.
    Cheers,
    Jai.

    write this in your 'Browse' Button's , when_button_pressed trigger
    DECLARE
      filename VARCHAR2(500);
    BEGIN
      filename:=GET_FILE_NAME(' ',NULL,NULL,'Choose any directory.',OPEN_FILE,TRUE);
      :txtbx3:=filename;  -- Here you will assign to you form's field.
    END;Edited by: Tuts009 on May 10, 2010 5:00 AM

  • Calling oracle command window through forms

    I need to call oracle command window in the forms. in the sence when i clicked a button in forms then oracle window has to open.
    Is that possible to call a oracle command window in forms.
    Please help me in this.
    Thanks in advance,
    raju.

    I need to call oracle command window in the forms. in
    the sence when i clicked a button in forms then
    oracle window has to open.
    Is that possible to call a oracle command window in
    forms.
    Please help me in this.
    Thanks in advance,
    raju.What do you mean by "Oracle command window"???

  • Window "Developer Forms Runtime-Web". Help me, please.

    I have instaled Developer Server 6.0 (Unix).
    When I'm runing my application in the browser of PC (jinitiator 1.1.7.18), apears the window "Developer Forms Runtime-Web".
    Is it possible that this window no display?

    I am not positive that I know what you are refering to but I think you are talking about the splash screen that comes up before you see your form. You can suppress this screen by setting the splashScreen parameter in you html file to NO. i.e. Assuming you are using IE, <PARAM NAME="splashScreen" VALUE="no">.
    HTH
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Encarna Requejo ([email protected]):
    I have instaled Developer Server 6.0 (Unix).
    When I'm runing my application in the browser of PC (jinitiator 1.1.7.18), apears the window "Developer Forms Runtime-Web".
    Is it possible that this window no display?<HR></BLOCKQUOTE>
    null

  • Create pop-up windows in forms 10g

    I have an application in which several formal controls are made before insert/update a record. Some of them are blocking, some others arent.
    Actually, at every constraint violation, a message is displayed with an alert. So, the user may got one or more alerts before he succeed in inserting/updating a record. And it may be annoying to click on 'OK' a lot of times!
    So, I wish to collect all error message and display them in a window, which is to be displayed in a pop-up way (something like the alerts that appear at the bottom-right corner of our screen when we have new mail).
    The issue is that the pop-up window must not disturb the user, i.e it should be displayed and iconized after few seconds, leaving the focus on the main window.
    I tried several solutions, but each of them have some issues.
    External HTML page: maybe its the easiest solution. But bluring it, the focus doesnt return to the form application.
    New window: I can run and iconize it. But, as in the previous case, the main window lost the focus.
    New canvas: I put a text item LOG_ERRORS in a new canvas, in the same main window. But when I run it, the main canvas disappear.
    does anyone know how to create popup windows in forms 10g (if it is possible)?
    thank you

    You can use a new window and set "Window Style" to "Dialog" then you can show the window without the main-window loosing the focus

  • MDI child window appearance

    When you create an MFC MDI application in Visual Studio 2012 by selecting "Multiple Documents", clearing the "Tabbed documents" checkbox, and selecting "MFC Standard" for the project style, you get a traditional MDI application
    with a main frame window and multiple child windows.
    However, while the frame window gets the new flat Windows 8 look, the child windows still have a Windows7 style, with a 3D type light blue frame and a glossy close button in the top-right corner. Is there a way to get the child windows to have the same flat
    look as the main frame window?
    Thanks in advance for any advice.

    ...If you want to make your voice heard to the VC++/MFC developer support people via Connect, that is a reasonable option.  If others vote the "me too" there, your suggestions might gather enough weight for some future action.
    <
    Robert, if you do post a bug report on Connect please post a link to
    your bug report back here so we can find it.
    I guess the bug report is really that Windows 8 doesn't draw MDI child
    windows in a consistent style to the top level frame window (I see the
    same thing using Forte Agent, so I don't think it's an MFC issue).
    For instance, if you are asking that MFC include some new visual manager(s) to support the newer Windows 8 appearance,
    Please, no more application specific "visual managers". Don't make it
    easy to make an inconsistent mess of UIs.
    I've just been saddled with a WPF application that's a right mess in
    that respect - some parts change correctly when the user changes the
    Windows scheme to high-contrast, while other parts use AvalonDock with
    its own theme idea of what the colors should be.
    Dave

  • Wie bekomme ich meinen iMovie Film (4GB) von meinem iMac in eine Windows lesbare Form? (habe kein iDVD)

    Wie bekomme ich meinen iMovie Film (4GB) von meinem iMac in eine Windows lesbare Form?
    - habe kein iDVD
    - habe Brenn Software Burn auf dem iMac, brennt aber nur bis 2 GB
    Danke  :-)

    https://discussions.apple.com/docs/DOC-5781
    Transfer 'per Scheibe' würde ich durch usb-stick ersetzen...
    Wenn Du Schwierigkeiten mit meinem English hast, poste hier noch mal..

  • 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

  • How to maximise the browser window in Forms 9i?

    I want to maximise the MDI window in an Oracle 9i Form. Many posts here say to use:
    Set_Window_Property(Forms_MDI_Window,Window_State,Maximize);
    but it doesn't work for me. Some posts suggest there is a bug that prevents it from working. If this is the case, is there some javascript I can run to do this for me? I am already using javascript to close the browser window when I am finished with the form, so a little more wouldn't hurt.
    thx
    adam

    When you are running inside the browser, you have no MDI window to maximize. (But there is a frame size that is set on the URL line or in the config file, which cannot be changed from the form).
    <p>When running SeparateFrame=True, you have an MDI window, and if you issue the maximize, Forms will set it to cover the full screen, but it will NOT be maximized.
    <p>And if you use get_window_property, it will always report window_state=normal, even if the user maximizes the window.
    <p>See MDI Window State in web forms

  • Request.getParameter is NULL from window.open form submit

    Hi all,
    We have one portlet application where a jsp page has a link which opens as a child window using the window.open function in javascript.
    It has a form and some textboxes with a save submit button.When the save button is clicked the portlet processAction is called but when i try to set the renderrequest all the request.getParameters are null .I have tried both the ActionRequest and HttpServletRequest and both have nul values.
    As a result me Save is failing since the request.getparametrs are null.I added the "save" as part of form action URL and its getting passsed but the other, i am unable to fetch.
    My Form action is : <form name="saveEntries" id="saveEntries" action="<portlet:actionURL secure="true"/>&action=save&_pageLabel=ABC" method="post">
    My process action code is :
    Enumeration<String> parameters = request.getParameterNames();
              while(parameters.hasMoreElements()) {
                   String parameter = parameters.nextElement();
                   String[] values = request.getParameterValues(parameter);
                   if(values != null && values.length > 1){
                        response.setRenderParameter(parameter, values);
                   } else {
                        response.setRenderParameter(parameter, request.getParameter(parameter));
                        if(request.getParameter(parameter)!=null && "save".equalsIgnoreCase(request.getParameter(parameter))){
                             HttpServletRequest httpRequest = (HttpServletRequest) request.getAttribute("javax.servlet.request");
                             Enumeration parameterNames = httpRequest.getParameterNames();
                             Enumeration<String> httpparameters = parameterNames;
                             while(httpparameters.hasMoreElements()) {
                                  String httpparameter = httpparameters.nextElement();
                                  String[] httpvalues = httpRequest.getParameterValues(httpparameter);
                                  if(httpvalues != null && httpvalues.length > 1){
                                       response.setRenderParameter(httpparameter, httpvalues);
                                  } else {
                                       logger.debug("----------------->:ApproveTime else processAction = :Getting HTTP :parameter:"+parameter);
                                       logger.debug("----------------->:ApproveTime else processAction = :Getting HTTP :request.getParameter(parameter):"+request.getParameter(parameter));
                                       response.setRenderParameter(httpparameter, httpRequest.getParameter(httpparameter));
    Any help is highly appreciated.

    Hello,
    One potential reason why it isn't working for you is that the Java Portlet specifications (JSR168 and JSR286) don't allow URLs to be manipulated once they are created with a a portlet:xxxURL tag. The reason for this is that the portlet container needs to be able to rewrite the URLs to properly go back through the portal framework (or over WSRP if running the portlet remotely) and to encode all the parameters needed. The portal framework could even change it from a URL to a Javascript action, where simply appending extra "&paramName=someValue" onto the end of the generated URL won't work. So this:
    <form action="<portlet:actionURL secure="true"/>&action=save&_pageLabel=ABC" method="post">isn't legal by the portlet specification-- if you want to add parameters to the actionURL, you can by doing this:
    <form action="<portlet:actionURL secure="true"><portlet:param name="action" value="save"/><portlet:param name="_pageLabel" value="ABC"/></portlet:actionURL>" method="post">which will add the parameters to the URL in a way that will always work with the portal framework.
    One other thing to note- it looks like you're just trying to copy all of the action parameters in the request into render parameters in the response; this can be done much easier like this:
    response.setRenderParameters(request.getParameterMap());Kevin

  • Close the window in forms

    well i had made my application with multiple windows in one form well all the window be opened through menu but the problem is that when i tried to close the windowby clicking on the close mark on the window it dont close that window well in this way if i had opened 10 or more windows they remain open and dont seem to be close by that close or hide on exit property of that windows what i conclude its a built in bug or any mistake that i had made help me out

    Hi!
    You must create When-Window_Closed trigger.
    e.g.
    if :SYSTEM.EVENT_WINDOW = 'W1'
    then
    Clese_Window('W1');
    else
    Exit_form;
    end if;

  • Runtime error while opening the main window in form.

    Hi,
    i am getting this run time error when i am copying the standard script j_2i_pla and opening text element for changes even same problem with with standard form also below is the dump error
    Runtime Errors         DATA_LENGTH_TOO_LARGE
    Except.                CX_SY_RANGE_OUT_OF_BOUNDS
    Date and Time          28.10.2009 10:44:20
    Short text
         Invalid partial field access: Length is too large
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLSTXK" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_RANGE_OUT_OF_BOUNDS', was not
          caught in
         procedure "TOKEN_COMMENT" "(FORM)", nor was it propagated by a RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         In the executed program "SAPLSTXK", the system attempted to access the field
         "ITF_TOKEN" of the type "C" and with the length 255 using the length 273.
         However, a partial field access with a length specification that is
         larger than the field length is not allowed.

    Hello,
    Please check the Character formats / Text stlyes/Paragarph defined within Main window, The error is because of some inconsistency withinthe layout component.
    Regards,

  • New Window for Form called from a form based on a procedure

    Hi
    I have a form that is based on a procedure that asks for an employee number. The number is then passed to the procedure. The procedure then calls the next form passing in the employee number.
    This works however I would like the form called from the procedure to open in a new window while still being able to pass in the employee number as a parameter.
    Is there a way to do this? I have tried looking at wwa_app_module.new_instance & wwv_media.show_newwindow but I these only take the moduleid, I can't see how to pass in the employee number at the same time.
    Any help would be appreciated.
    Thanks
    Belinda

    Hi,
    You can pass parameters like this
    wwv_redirect.url('SJAYARAM_9042F.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=1060253649&p_arg_names=deptno&p_arg_values=10&p_arg_names=_deptno_cond&p_arg_values=%3d');
    In this example the parameter deptno is passed with a value 10 and conditional operator '='
    Hope that helps.
    Thanks,
    Sharmila

Maybe you are looking for

  • Running really slow all of a sudden

    what could be the problem. all of a sudden it is running very slow and occasionally even Finder is not responding. is there a disc clean up or something that i could run to help clear up this issue?

  • Regarding Balance Sheet

    Hi gurus is there any chance to see balance sheet for  2 or 3 months and 15 days or like dis Give me reply Regartds SS

  • Converting NEF (Nikon RAW) to DNG results in error message

    I'm trying to convert the NEF (raw) images off my Nikon d90 to DNG to import and work with in PS CS2. Using the DNG Converter tool, having made my settings and pressing "Convert", I get an error for all the 54 files in the selected folder. "An error

  • After updating to patch 6.0.2 on my iPhone 5, I get this list of problem

    Wifi speed is so slow Sometimes I have to connect twice to successfully join a wifi network Updating the apps on my iTunes in my computer is 5 times faster than updating it on the iPhone using the same Wifi connectivity 100% battery life was drained

  • Iphoto crashes when editing scans

    Hi, I have scanned some old family photos and I am now trying to edit them (they are jpeg files). I've read many of the posts here and have followed every advice (newest iphoto version, rebuilt library, etc.....) Then I built the new library with a f