How do I start Applet Window Maximized in 6i

Hi All,
I am running forms 6i and am wanting to know how to start the applet with a maximized window. I know you can set the HEIGHT, WIDTH parameters but maximized window is what I am after.
Many Thanks

If I understand your question properly, try putting:
SET_WINDOW_PROPERTY(forms_mdi_window, window_state, maximize);
in your WHEN-NEW-FORM-INSTANCE trigger.
You can also put window_state=maximize on the command line that you use to launch your application.
null

Similar Messages

  • Compiz: How to start all windows maximized?

    Hi all,
    I'd like to start all windows maximized on my netbook running compiz. There is a an option in "Window Management/Window Rules/Matches". Putting a value of "class=" in the box will set all windows maximized but cannot be un-maximized.
    Is there an option somewhere to start all applications maximized but allow to un-maximized them later on?
    Thanks!

    Not aware of a plugin but try this - https://aur.archlinux.org/packages.php?ID=22071

  • How do you start in windows mode on my MBP???

    How do I start in windows mode on my MBP???
    thanks

    Correct... but only if you actually HAVE WinXP installed under Boot Camp on your Mac.
    I know, obvious... but, maybe this fella doesn't know that

  • I already partitioned my hdd via Bootcamp, supports downloaded, and windows is on an external USB. How can I start installing Windows now? at startup it doesnt show up as bootable device...

    hi,
    I am having a problem installing windows via bootcamp.
    I already partitioned my hdd via Bootcamp, downloaded and copied all the supports for windows, and windows is on an external USB as well. I had to stop the process the other day, so i shut down the computer. Now I am trying to boot from the USB, but I cant get to that point where the computer should restart and windows would start installing.
    . After restarting, holding command, it doesnt show up as bootable device.
    How shall I move forward? My disk is already partitioned, and if i start the whole process from the beginning, it wants me to partition again - although I already made a 100GB partition for windows.
    Please help me out.
    best,
    Zoltan

    So, here is what happened when I tried to make it.(sorry for quality, i had to take them by phone)
    At first when I opened it I saw that I could simply resolve it just by stretching the arrow at the bottom, giving the 100 GB back which I partitioned before via Bootcamp. At this point options was not available.
    I didnt do it because you mentioned earlier that it might be not designed to install windows.
    The second thing I tried I choose 1 Partition from Partition Layout. This time Options were available but I didnt see anything like GPT, the onces that are optionable are on the screenshot.
    What do you think how shall I move on? I was thinking to give it a shot with option 1, just stretch it back and try everything from scratch.

  • Want to install Windows 7 to my Mac with Boot Camp, but my laptop's monitor is broken. How could I start the Windows installation through an HDMI video source?

    Hi everyone,
    I'm trying to start a bootcamp installation of Windows 7 though an external monitor using HDMI. Is there anyway to have the installation screen show up on the external monitor? I get stuck at the beginning of the installation due to not being able to use my laptop's primary screen.
    Thanks for the help!

    Kapil Choubisa wrote:
    when I try complete step 2, it always says "The Installer dick could not be found".
    Unless you have a 2010 Mini Server model, your Mini has a built-in Optical drive (Mac mini (Mid 2010) - Technical Specifications).
    Can you read the Windows Installer media when booted on OSX? Your DVD media may be corrupt.
    If your Optical Drive is functional AND the Windows DVD is readable in OSX Finder, then your installer should work. You will need a USB2  for BC drivers as well.

  • HT5628 How start with windows 8 automatically using bootcamp?

    How i can start with windows 8 using bootcamp?

    When booted under MacOS, you can go to the System Preferences and select your "Startup Disk".  This will allow you to indicate which partition you want your computer to boot from normally, or on just the reboot that you are initiating at that time.  If you have already installed the Boot Camp Utilities under Windows, you can do similar from the tray icon that it loads.  If you boot your Mac from teh Recovery Partition, one of the menu options is to specify the Starup Disk.  You have many options to choose from.

  • Closing applet window

    i have two Q:
    1) how do i close applet window ?
    2)how can i know that the X button of the applet window was pressed?

    1) You don't...the browser takes care of that!
    2) In IE, the applet's stop and destroy methods are called when the user moves from your HTML to another or the window is closed. In NN4+, the applet's stop method is called when the user moves away from your HTML and the destroy method is call when the window is closed. I don't bother with NN6.2+ because to me it's still a beta product based on Mozilla version .9 something and is so slow.
    V.V.

  • Closing the applet window

    how to close the applet window using a button on the applet

    ravindra.alld wrote:
    how to close the applet window using a button on the appletIs your applet in a web browser? If so the only way to hide visibility of the applet would be through javascript and css. So you would need an html button outside the applet to do this.

  • Maximizing a frame or applet window

    When you set the size of an applet using the setSize(int, int) method in a frame window or specify the width and height in an applet's tag or comment in the source code, the applet or application window is always in the "Restored" state (meaning it can be resized). However, how can I maximize the window to make it automatically fill the screen? Similarly, what if I want to minimize the window? And furthermore, if the user maximizes or minimizes the window and in the source code I try to resize it, will I get a runtime error or will it change the window to the restored state?

    // <applet code=mark width=400 height=300></applet>
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class mark extends JApplet implements ActionListener {
      JButton smallerButton, largerButton;
      static JFrame frame;
      static boolean isApplet = true;
      public void init() {
        smallerButton = new JButton("Size Smaller");
        smallerButton.addActionListener(this);
        largerButton = new JButton("Resize Larger");
        largerButton.addActionListener(this);
        JPanel buttonPanel = new JPanel();
        buttonPanel.add(smallerButton);
        buttonPanel.add(largerButton);
        JPanel centerPanel = new JPanel();
        centerPanel.setBackground(Color.red);
        Container cp = getContentPane();
        cp.setLayout(new BorderLayout());
        cp.add(buttonPanel, "North");
        cp.add(centerPanel, "Center");
      public void actionPerformed(ActionEvent e) {
        JButton button = (JButton)e.getSource();
        if(isApplet) {
          Frame awtFrame = null;
          Component c = getParent();
          while(c != null) {
            c = c.getParent();
            if(c instanceof Frame) {
              awtFrame = (Frame)c;
              break;
          if(button == smallerButton)
            awtFrame.setExtendedState(Frame.NORMAL);
          if(button == largerButton)
            awtFrame.setExtendedState(Frame.MAXIMIZED_BOTH);
        else {
          if(button == smallerButton)
            frame.setExtendedState(Frame.NORMAL);
          if(button == largerButton)
            frame.setExtendedState(Frame.MAXIMIZED_BOTH);
      public static void main(String[] args) {
        isApplet = false;
        frame = new JFrame("Main Frame");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JApplet applet = new mark();
        frame.getContentPane().add(applet);
        frame.setSize(400,300);
        frame.setLocation(300,200);
        applet.init();
        applet.start();
        frame.setVisible(true);
    }

  • How do U resize a window in start up

    Im making an applet that draws somehting and my drawing is bigger than my applet i want to only view it in a n applet viewer so how do i resize the window automaticly so at start up i get a big enough window to fit my drawing in.

    try n add this in ur html file.
    hope it helps.
    An applets width and height properties are only available in Internet Explorer 4 - and then they are only read only.
    The only possible way is to trap the resize event using the documents onResize event handler in Netscape Navigator 4 and Internet Explorer 4 to reload the page:
    <HTML>
    <body onResize="document.history.go(0)">
    <applet width="100%" height="100%">
    </applet>
    </body>
    </html>

  • Maximizing the Applet window

    I am deploying a forms 5 application over the web. How can I
    have the applet window automatically maximized?
    I know how to do it in the forms runtime with FORMS_MDI_WINDOW
    but that doesn't work in the java deployment.
    any help would be greatly appreciated..
    thanks in advance,
    Dennis Hancock
    null

    Can you not use the same win api to bring up the browser application, since the applet is running within the browser?

  • How do I turn off the window maximizing feature when I click the top window frame?

    Clicking on the top window frame causes Firefox to maximize. This is the only program I have that does this, so I am constantly doing this accidentally. It causes me no end of annoyance, having to minimize the Firefox window every time to see the other window I am using at the same time. Is there a way of turning this "feature" off? I have looked through all controls tabs I can find, and the help files on the Firefox website, and can find no answers to this.

    Unintended consequences ... my favorite kind! New information - this appears to be a Windows issue - sorry Mozilla. Another app (Word) just started doing the same thing (previously only observed with Firefox). If the app is too close to the top of screen, and you select it, and slightly move it, it maximizes. I heard this is standard in Windows 7, but I am using XP. This is becoming typical of the annoying hubris of Microsoft that will likely make my next OS Linux. I am not blind, and in need of Microsoft making a single window maximally readable, especially at the expense of all the other windows. If I wanted my computer to make all of my decisions for me, I would have stuck with Apple!
    Sorry Mozilla help board - I just had to get it off my chest!

  • How can I run a java-application on starting of Windows 2000

    How can I run a java-application without any user on starting of Windows 2000?
    For example, if the computer is restarted and nobody enter into it yet, my java-application should run anyway.
    How can I do that?

    Hi, you have to put it in a Windows service.
    To do this you have a program, Srvany.exe that allow to insert a .exe or .bat program in a Windows service.
    For example, i develop a program, TomcatGuardian and i put it in a service because i need to run it in a server without Administrator logged in.
    Regards,
    Ivan.

  • How can I start a second window of a second profile through the command line?

    I have two profiles set up, 'default' and 'second'. If both are already running how can I start a second window of profile 'second'?
    firefox -p 'second' : opens a new window of the default and,
    firefox -p 'second' -no-remote : tells me that firefox is already running.

    I don't think that this is possible.<br />
    You need to open this second instance (Firefox profile folder) with the -no-remote command line switch and that makes it impossible to open external links via the command line or via a double-click.<br />
    You can only open a link in such an instance by dragging the link on the tab bar of that Firefox window.

  • If you've changed your startup options on mac to start in windows, how do you fix and go back to mac on startup?

    if you've changed your startup options on mac to start in windows, how do you fix and go back to mac. I can't get my mac to switch back to mac, it is like stuck in widows mode, I have tried holding down the options key upon start up and that did not fix it either.
    Please help! Thank you so much!

    The Apple drivers you install in Windows also puts a Startup Drive icon in the Task Bar. Choose that to change the startup disk back OS X.

Maybe you are looking for

  • How do i find my music that is listed in itunes and is accompanied by a "!"?

    many song on my itunes are not playable and are accompanied by a "!". when i try to play them i get this message: The song  xxxxxxxx  could not be used because the original file could not be found. Would you like to locate it? how do i locate these s

  • HR payroll reporting

    Hi ALL Just a quick question.....I am doing payroll reporting using logical database PNPCE, do I need to use standard includes for payroll. if yes why these includes are used for. cheers AJ

  • Target Message for generation HTML email?? : Michal's Blog (2718)

    hey folks, I'm trying out the scenario described in Michal's blog <a href="/people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter">XI: HTML e-mails from the receiver mail adapter ?</a> What should be the target messag

  • Webcache.xml is not rewritten

    We have been evaluating 9iAS,including the web cache, and found that our cacheing rules were being ignored. Eventually a co-worker pointed out the existence of $ORACLE_HOME/webcache/.webcache_tmp.xml. This proved to have the changes we had been makin

  • Address Book is Not Working

    Suddenly Address Book is not working.  I can type addresses into Mail, but if I try to click on names directly from Address Book, nothing happens.  It has been working fine until today.  Contacts is fine; all addresses are there, but I wanted to ente