0
votes
3answers
609 views
closing my jframe without using the close(X) button and terminating the JVM
i have a frame that instantiates another frame but i don't want to use the close(x) button on the instantiated frame., so i created a button. how do i code that this button can be …
0
votes
1answer
38 views
How to auto resize JFrame according to content
I have created a custom JPanel that displays images (lets call it MyPanel), I have added this to JFrame's contentPane.
I want JFrame to be resized automatically to fit the MyPanel …
1
vote
4answers
113 views
JPanels, JFrames, and Windows, Oh my!
Simply stated, I am trying to make a game I am working on full-screen.
I have the following code I am trying to use:
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphics …
2
votes
2answers
42 views
Is it safe to dispose a JFrame from a different thread in Java?
Is it safe to call the dispose() method of a JFrame from a different thread (not the EDT)?
0
votes
3answers
145 views
Fixing flowlayout in Java
Hi I have created a GUI for my program in Java, and I have used flowlayout (didnt have much luck with borderlayout), but with flowlayout if the user resizes the program, everything …
0
votes
2answers
68 views
Swing: How to position JFrame N pixels away from the center of the screen at first setVisible()?
What's the code to position a JFrame N pixels (say 300 pixels in x-direction) away from the center of the screen before one calls setVisible(true)?
0
votes
2answers
24 views
Stop a jframe requesting focus
I have a small application that updates the contents of a JFrame very quickly (many times per second) and on each update (I remove a component and then add a new one, then set visi …
0
votes
2answers
492 views
How to make Jpanel expand to the size of the JFrame?
The below code is from the book objects First With Java By Michale Kolling and David J Barnes and the following is an exercise (ex 5.49) from the book.The ex is : Improve your draw …
0
votes
2answers
123 views
Closing JFrame of java applet using buttons on the system frame causes delay
I have written a java applet which opens a JFrame (so when run in the browser, it will popup a small new window).
The problem is, when pressing one of the buttons of the window fr …
0
votes
2answers
57 views
Keep JFrame on top of others.
I am in a situation where i create FrameB from my main frame FrameA. When the user is working on FrameB i would like it to be on top of FrameA even when user accidentally clicks on …
0
votes
2answers
51 views
JFrame disappear behind applet’s browser window
My app is a JApplet which opens a JFrame. the applet has a listener and a button, so that if the frame goes behind another window (looses focus), the user can simply click the butt …
1
vote
1answer
124 views
Wrong packing of JFrame using JPanel in borderlayout
Hello there. I am writing a simple application in Java that does some particle simulation on a bunch of sheep (don't ask). For this I want a window with a JPanel for graphics (whic …
1
vote
2answers
50 views
What is the difference between the ways a Swing window can be initialized?
I am curious as to the differences between the following approaches to creating a Swing window:
Using java.awt.EventQueue.invokeLater() in main();
Using SwingUtilities.invokeLate …
0
votes
1answer
79 views
How to make a JFrame have no taskbar button ?
I would like to have a normal JFrame with its full functionalities (decoration, title, icon, resizing, minimizing, maximizing, etc.), with the only thing that it wouldn't appear in …
0
votes
1answer
63 views
Minimizable JFrame that stays on top of main application window.
My apps pops up a dialog. Users usually want to switch back and forth between this dialog and the application window for a period of time. I want this dialog to stay on top, so tha …
