Any way to maximize a GUI window ?

I have a GUI application that was developed using Textpad(if that matters), and I have the following line :
setSize(1200,1000);
This does size the window to fit the entire screen, but is there a better way to do this or some keyword (i.e. MAX) that I don't know about ?

I searched the forum for this "+maximum +size +screen" , and i found .....
http://forum.java.sun.com/thread.jsp?forum=57&thread=172722
http://forum.java.sun.com/thread.jsp?forum=5&thread=172711
http://forums.java.sun.com/thread.jsp?forum=57&thread=116814
and more

Similar Messages

  • Hello there! i would like to know if there is any way to recover a closed window, given the fact that i closed a trade confirmation window. thanks!

    i have just closed an important window and i really need to recover it, but is not the last windou closed, so is not possible to get it pressing ctrl + shift + T, is there any way to recover recently closed windows?

    Hi missionario,
    Try going to ''History > Recently Closed Windows''. There is also an option for ''Recently Closed Tabs''.
    Hopefully this helps!

  • HT204048 Is there any way at all to install Windows 7 32 bit onto a MacBook Pro 13 in Retina Late 2013?  The windows software I need won't run on Windows 7 64 bit.

    Is there any way at all to install Windows 7 32 bit onto a MacBook Pro 13 in Retina Late 2013? The windows software I need won't run on Windows 7 64 bit.

    Not using Boot Camp, but you should be able to using virtualization software such as Parallels to run Windows concurrently with OS X.

  • Any way to open new browser window without using image maps?

    Is there any way to open new browser window without using image maps? My code works fine in Firefox, but not in IE. There are 2 problems in IE: 1st is that the thumbnail images move up within their own borders & 2nd that when you click on an image it does open up a new browser window, but also redirects to the index page (in this case it's just a placeholder index page - the new one I've called index_new.html for the time being).
    Here is the link:
    http://www.susieharperdesigns.com/gallery_beads.html
    Any help is greatly appreciated.

    Your missing a value on the HREF.  In your code you have this:
    <area shape="rect" coords="-24,-9,106,144" href=" " onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    and it should be this:
    <area shape="rect" coords="-24,-9,106,144" href="javascript:void()" onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    If you fix the code on all your beads, it should work.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Any way to float a browser window?

    I would like to float my Firefox browser window on top of other active windows.  Is there any way to do this??  I would like to be able to watch the news while working on other documents.
    Suggestions?

    I searched the forum for this "+maximum +size +screen" , and i found .....
    http://forum.java.sun.com/thread.jsp?forum=57&thread=172722
    http://forum.java.sun.com/thread.jsp?forum=5&thread=172711
    http://forums.java.sun.com/thread.jsp?forum=57&thread=116814
    and more

  • Any way to do this? Windows program without installing windows.

    I got Adobe Premier Pro last year after winning a local film competition. I got a PC version because my best computer at the time was a PC. Now I have a Macbook pro and would really like to do my editing on it. I know I could install XP on the Mac with bootcamp but I don't really want to. I was wondering if there was anyway of somehow getting the PC version to work. Possibly emulating it somehow. I don't really have the money to buy XP anyway and I'm moving away to college with only the macbook. I have no desire to go back to imovie. Is there any way to get Primeire Pro to work with out having XP?
    Macbook Pro 17 in.   Mac OS X (10.4.7)  

    Not yet, but I think some 3rd party developers are working on a solution similar to WINE (on Linux) that would allow Windows programs to boot up in a Mac environment.

  • Any way to connect iPod to Windows XP via network?

    Is there is a way, app or not, to connect a 2G touch to Windows XP via a WiFi network connection? For instance, once it picks up a WiFi connection, is there any way I can "see" the iPod in network places etc. Mainly I want to do this so I can access my music from my workstation and copy it over (temporarily), if that's at all possible, but I could see the value in transporting other files (I'm aware of air sharing). Thanks in advance.

    Darn. Okay, how about the alternative: If I could store some mp3s in a folder on iPod, do you know or suggest the best method to allow me to access it from a computer on the network without plugging iPod in? Thanks agian.

  • Is ther any way of filling credentials in Windows logon using script?

    Hello,
    Is there any way to fill in login and password at windows logon using a script (that would be started via psexec)? Bat would be great, but any other is ok too. Nothing more, no mapping. Just logon.
    I've spent a few days searching for this info, and haven't found any usefull info. Anyone tried such thing?
    Cheers,
    K.
    PS. Sorry if I'm writing in the wrong section. Not shure where this topic should go.

    There is no way to do this in Windows, Unix or any other system.
    You can set a Windows account to "auto-logon" but only one account can be set per machine.
    ¯\_(ツ)_/¯

  • Any way to NOT use the Windows theme?

    The reason I downloaded Safari on my PC was because I loved the way it looked, and how it worked, plus the smooth text, but not it looks like Google Chrome or IE.
    Is there any way to change it to the Mac look?

    Yea the new changes are hard to digest for those that liked the Mac look. But I have some advice though, that made me feel more comfortable with it.
    Safari Preferences > Appearance > Font Smoothing = Medium
    That should make the fonts look like they did before. Also if you use Vista and think the Title bar is difficult to read, try:
    Control Panel > Customize Colors > Choose Frost
    (if you have a dark desktop background, this makes the tabs much more readable and Mac like :))

  • Any way to close the DOS window ?

    Is there anyway to close the DOS window, after executing a DOS command in a GUI Java program ?
    I keep getting "Please press any key to continue..."..I don't think I can use the System.exit in a GUI Java program?

    Yes.
    Process p = Runtime.getRuntime().exec(...);
    PrintStream out = new PrintStream(p.getOutputStream(), true);
    out.print("a");You get the output stream of that process and print an a (which I guess will work just like you pressed a key). I don't know if there has to be a delay before you write this character. If you send it before it has written "Press a key ..", then it might not work. In this case you can add a line with Thread.sleep(1000); to sleep for 1 sec in this example, just before you execute the print statement. Or you can get the InputStream from the process, and read everything it sends and check if/when you get the "Press a key .." text:
    PrintStream out = new PrintStream(p.getOutputStream(), true);
    BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String s;
    while ((s = br.readLine()) != null) {
      if (s.startsWith("Press a key")) {
        break;
    out.print("a");something like that..
    There might be cases where you don't get a "Press a key" back if the DOS window is big enough to hold all the information (it is possible to change the buffer for DOS windows so they can hold more than 25 lines).

  • Any way to install OO4O in Windows 7?

    I just got a shiny new Windows 7 development box, and found I couldn't really install a full client on it, but managed to install ODT, which ought to be enough to support most development work.
    But unfortunately, there is one ASP Classic app that I have to support, which uses OraOLEDB connection strings and a few OO4O calls. I have not managed to persuade OO4O to install, because it finds a Windows version of "6.1" objectionable. The installer I ran into this with was "ODTwithODAC1020221". I don't know if there's a lighter-weight OO4O installer I can try.
    Is there some workaround, or some manual way, where I can convince OO4O to be installed on this machine? It's just for development, it doesn't have to be trustworthy or anything. If it can limp along enough to just establish a connection, that's about all I need.

    pointy wrote:
    I just got a shiny new Windows 7 development box, and found I couldn't really install a full client on it, but managed to install ODT, which ought to be enough to support most development work.
    But unfortunately, there is one ASP Classic app that I have to support, which uses OraOLEDB connection strings and a few OO4O calls. I have not managed to persuade OO4O to install, because it finds a Windows version of "6.1" objectionable. The installer I ran into this with was "ODTwithODAC1020221". I don't know if there's a lighter-weight OO4O installer I can try.
    Is there some workaround, or some manual way, where I can convince OO4O to be installed on this machine? It's just for development, it doesn't have to be trustworthy or anything. If it can limp along enough to just establish a connection, that's about all I need.At this time, Oracle does not officially support Windows 7 for any product.
    You might have some luck asking in OO4O-related forum at http://forums.oracle.com/forums/category.jspa?categoryID=44 or going to Oracle Support

  • I've been wondering about a feature that I ran into with a previous version of Firefox. Is there any way to open two separate windows in Firefox 4?

    I ran into this when working in gaiaonline.com on Firefox 3.6, ''I believe it was .6. It could have been a later version. But it was 3 for sure''. I was signed into one profile on one window, and my sister was signed in to hers on a different window of Firefox at the same time. I was wondering if there was a way to achieve this on Firefox 4.

    You can look this extension if you want to sign on with different identities at the same time:
    * Multifox: http://br.mozdev.org/multifox/

  • Is there any way to get the finder window spinning wheel status indicator back?

    In Mac OS X Lion the bottom finder window frame is gone. Consequently the spinning wheel status indicator in the lower right corner is also gone. How do I get the status wheel back so I can tell whether the window view is still loading or hung?

    pixelthinker wrote:
    In Mac OS X Lion the bottom finder window frame is gone. Consequently the spinning wheel status indicator in the lower right corner is also gone. How do I get the status wheel back so I can tell whether the window view is still loading or hung?
    Up top menu > View > Show Status Bar
    Pete

  • Is there any way to install iTunes on windows 7 without it changing all my desktop shortcuts to iTunes?

    I just got a new iPhone 6 and I want to use iTunes to download songs and back my info up on iCloud, but every time I try to install iTunes it replaces all my shortcuts with iTunes! I had to entirely uninstall it last time to be able to use google chrome again. Is there any solution to this problem?

    Should you find that all of your desktop shortcuts have turned into links to the iTunes application download and apply the lnk registry fix from www.sevenforums.com/tutorials/19449-default-file-type-associations-restore.html.
    tt2

  • Is there any way I can download a Windows phone connector onto my iBook G4 with OS 10.5.8?

    I can't download Windows Phone Connector 7 to my iBook G4 because the download requires 10.6.6 and I have only 10.5.8. Is there anything I can do so that I can interface my iBook with my Windows 7 Smartphone?
    Thanks

    You will need to upgrade your computer to at least Mac OS X 10.6.8. Then you can download, install and run iTunes 10.7 which will work with your iPhone 5. iTunes 10.7 can be downloaded here:
    http://support.apple.com/kb/DL1576
    If your Mac isn't now running Mac OS X 10.6, you can buy a copy from the Apple Store; in the US:
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    Install that, run Software Update and get all the available updates, and you should then be in business.
    Regards.

Maybe you are looking for

  • System.exit(0); reboots PC..........

    Hello all, I compiled and ran this program with no problems about 5 or 6 times as soon as I finished writing it. I walked away for about 15 minutes and tryed to run it again. The program runs fine up until the end; now, however, at the System.exit(0)

  • DMVPN: HUB's behind a LoadBalancer and Spoke-Spoke communication

    Hallo, we are planning a scaling DMVPN network for around 2000 spokes. Is it possible to install the HUB's behind a Load Balancer so that they are reachable only through 1 VIP address and ALSO the possibility of a direkt spoke-spoke communication whe

  • Problem with change/delete structure in package

    Hello! I got the task to delete a package in the ABAP Dictionary. In this package there are structures that I can´t delete. I get the following message: You cannot edit object R3TR TABL Y1LASME with the standard editor Choose 'Display object' or 'Can

  • Moving average price as on date

    Dear All, Can any one tell me how can I find a moving average price of a material on a particular date? Suppose I want to know what was the moving average price on 15/12/2007? What is the t.code? thanks & regards, Ramesh Balivada

  • Best output out of Logic Pro Technical Annlylist

    Hi, we are currently running the Tascam Fw1884 mixer in one of our studios and wanted to know if there is a better alternative audio interface that can preview sounds from the application better. We are running Mac G5 with Logic pro and use headphone