A JFrame is a GUI element in Java Swing.

learn more… | top users | synonyms

0
votes
1answer
17 views

Can't add a panel (so background) to my JFrame

I have a JPanel that I use as a background which name is BackgroundPanel. And I am designing my main JFrame with NetBeans, and adding BackgroundPanel like that. public class Main extends ...
0
votes
0answers
22 views

JFrame Glasspane is also over JDialog but shouldn't

I have a JFrame (undecorated) with a Glasspane. This Frame opens a JDialog (also undecorated and has also a glassPane) and hides itself (setVisible(false)). The Glasspanes are set with ...
0
votes
1answer
24 views

Retrieve Values from multiple JFrame to a single JFrame

I have 5 JFrames in my application and I want the values from all 5 JFrames to be sent to a single JFrame. And it is a process where I have to go one frame to another and the value entered previously ...
0
votes
1answer
34 views

Java program with multiple windows(JPanel), how to connect them to JFrame

I have a library application that permits users to log in, and many other things. I don't really know how to make multiple windows (views), such as a login, and if it is succesfull, closing the ...
0
votes
2answers
40 views

How do you prevent the main interface from closing, when you close others?

I've spent the last hour searching on Google to try and achieve something - preventing the closure of my main interface after one of the others is closed. I'm not sure if this is the correct way to ...
2
votes
1answer
35 views

JFrame with custom border not showing controls

I'm trying to make my own custom border, and I have done this through overriding the paint function in the JFrame. The problem which I have run into, is the fact that paint is being called after the ...
1
vote
2answers
26 views

Creating a second applet(window) in processing

Hello guys i am trying to do a code where i can create a second applet in processing by passing on a sensible area. the code works fine except for 1 thing. when it passes over the sensible area it ...
1
vote
2answers
47 views

Java JTabbedPane Inset Color

I was wondering how you would get the color of the inset of a JTabbedPane. I cannot seem to get this color. Every attempt I make I get 236,236,236 which is the outside frame color, where the inside ...
0
votes
0answers
36 views

“Refresh” a JFrame with setLayout(null)

I am trying to get the JFrame to refresh as I want to add a JPanel onto a JFrame after it had been set visible. invalidate() then validate() then repaint() won't work as I don't have a layout manager. ...
0
votes
1answer
14 views

Internal frame pass variable back java

As a newbie, I struggle with this basic problem. I have an internal frame that opens using a simple button on my main frame. I would like to be able to get the value of one variable from my ...
0
votes
1answer
33 views

Stop JComponent from repainting when state changes

I'm sure, this is something like a super stupid standard problem, but I spent hours searching and trying to get this fixed, but it just won't work... I just can't find my mistake here... I'm trying ...
0
votes
2answers
27 views

Error java JFrame

I don't understand why my code isn't working, trying to print a rectangle in my JFrame, but keep ending up with an error on f.add(p);. import javax.swing.*; import java.awt.*; public class SPEL{ ...
0
votes
1answer
34 views

Adding multiple types of Backgrounds to one JFrame

My title is a bit confusing, so I'll try to explain. What I'd like to do is have a background image in my application that stays static in the top center (as in, center on the x axis, and right at the ...
1
vote
2answers
31 views

Create a shortcut in JFrame

public final class UserPage extends JFrame{ public UserPage() { this.addKeyListener(new myclass()); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setSize(1000, 600); this.setLocation(300, ...
1
vote
2answers
35 views

Exiting out of one of two JFrame exits out of both

I have two seperate JFrames but when i click the X in the topright of one, it will exit out of the other also. I have an "exit" button near the bottom to do setVisible(false), but i still have the ...
0
votes
1answer
31 views

I need to split my panels 2 times and Im not sure how to do it

OK I have a frame with dimensions 1280x720. I need to split that up and create one side on the left that is 1000x720 and the right side 280x720. The panel that now is 1000x720 I need to split it again ...
0
votes
0answers
40 views

Rounded JFrame — is it possible? [duplicate]

For some time now I was trying to make a JFrame with rounded borders however I was not able to. I know the setShape(java.awt.Shape) method of a JFrame can be used to create JFrame with specific ...
0
votes
2answers
37 views

How Do I Keep A JFrame Above All Other Applications (That have open or will open) Such As Powerpoint

I am creating a news ticker (that narrow, black box at the bottom of the screen that stretches the length of the screen with text of other news that scrolls by). My application opens other programs. ...
0
votes
1answer
10 views

how to lock JFrame position?

i have a problem with JFrame position in the System i want to lock the position of the JFrame in the screen so no-One can move it and reLocate it tnx for your help already
0
votes
3answers
33 views

Throw an Exception When a JFrame is Closed

I would like to throw an exception whenever the user closes a window, but I'm not sure if this is possible. Here is some code of what I would like to do: import java.awt.event.*; import ...
2
votes
1answer
30 views

JPanel does not appear in window unless I resize the window

I am new to GUI in java, and have been using this video to learn. When I run the program, the window is blank until I resize it. public class GUIProgram extends JFrame { int screenWidth = ...
0
votes
0answers
22 views

How to have non-grouping JFrames within the same application?

I'm creating a new JFrame from within an already running JFrame. Both frames are separate applications, but in this case, the second application gets a "plugin handle" of the first application instead ...
0
votes
1answer
12 views

Jobjects on top of existing object

so I would like to know if it's possible to put things like buttons, text boxes, words, progress bars, ect, ect, on top of an already existing, in this example, JLabel. Here is the image of the ...
2
votes
1answer
32 views

How can I set the size of this GUI?

I have an applet (and this is an SSCCE): package tutoringcalculator; import java.awt.BorderLayout; import java.awt.FlowLayout; import javax.swing.*; public class TutoringCalculator extends JApplet ...
0
votes
1answer
23 views

When a JasperViewer appear and I close it, the main frame/parent also closed

When a JasperViewer appear and I close it, the main frame / parent also closed. How to prevent this? This is my code.. private void cmdprintidMouseClicked(java.awt.event.MouseEvent evt) { ...
1
vote
1answer
37 views

Program compiles, but won't run

Let's keep it simple. My code compiles, and when I run it (using java CLASSNAME), this is my command prompt error: Exception in thread "main" java.awt.IllegalComponentStateException: The frame is ...
0
votes
2answers
33 views

Accessing Components in JFrame from External Class

I am having trouble accessing several components in a JFrame to use their setText("...") method. My main is in a seperate class, because the actual program has many windows that need to be managed at ...
0
votes
0answers
15 views

Timer doesn't show in jframe (NetBeans)

After I add a timer (Netbeans) to a JFrame, i can't see any graphic element added. In the source code I can see the line: "private org.netbeans.examples.lib.timerbean.Timer timer1;" but I ...
0
votes
0answers
31 views

Transitioning from one frame to another

I have a method buildGui() which when called adds a frame to the screen and adds a button. The button 'start button' when clicked calls the dispose method for the current Frame and then creates a new ...
0
votes
1answer
26 views

Taking input from a text field in one class and scanning it in a different class

I am trying to make a GUI for a program I have completed and do not want to modify. My problem is the program uses a scanner to get user input and I don't know how to get input from the GUI to the ...
0
votes
1answer
26 views

Updated Information In JFrame

I have a JFrame "GameWindow" and a class named "Combat". I am trying to update various components in GameWindow (JLabels, JProgressBars, etc.) from variables in the Combat class. However, the details ...
-2
votes
0answers
24 views

Learning about keyListener in Java

I'm a kid that is trying to learn how to program in java and I recently started learning about JFrame and the GUI at my school. On my own, I learned about something called a KeyListener. In my ...
1
vote
1answer
41 views

Return control to an applet

I have an JApplet which during "init" starts JFrame. There are some operations in that JFrame and user closes the JFrame finally. Now I'd like to notify the browser via javascript that something is ...
0
votes
2answers
44 views

Kill JFrame thread in Java on windowClosing event

I am trying to write application which will create new window when pressing button, show current window count and close window and thread on closing the window. So basically, functionality is like ...
0
votes
2answers
27 views

Checking if window has keyboard focus again

Preface I'm designing an application which will at one stage have it's keyboard focus taken away and redirected to another application. The application in question is Google-Chrome. At this stage ...
-1
votes
1answer
32 views

show a new jframe on another jframe close event

I have 2 jframes(assume A and B) and when I close a one jframe(A) I need to show other jframe(B) I have a clue that I need to override defaultClosingOperation but I have no idea how to do that.any ...
1
vote
2answers
62 views

JPanel appearing to be two times bigger than set resolution

I must say I tried everything and I can't understand what's wrong with my code. In my SIView class I create MainFrame which extends JFrame with specified resolution (let's say X,Y). Then I create ...
0
votes
4answers
66 views

How to delete a class object? [duplicate]

I have an object called CounterGUI. It creates a GUI. I create it in another class, say MyProgram. Once MyProgram creates a CounterGUI object, how do I delete the object? Say if I do this: ...
0
votes
1answer
43 views

Creating a Wheel of Fortune-esque puzzle board using JPanel/JFrame Java

I was assigned a free-form Java coding assignment in my computer science class in which my group and I decided to make a Wheel of Fortune type game. I've been working on the GUI using JPaneland ...
0
votes
2answers
33 views

Getting values from another frame

So I'm having these classes public class Init { ... JFrame addStream = new AddStream(); addStream.setVisible(true); addStream.setLocationRelativeTo(null); addStream.getData(); ...
3
votes
1answer
37 views

Java - Swapping multiple JFrames on button press

this is the first time I've had a look at JFrames and JPannels and I've come a little stuck. What I am trying to do is this, I wish to have an starting screen then based on the users button choice it ...
0
votes
1answer
15 views

I cant go to design mode in netbeans(jframe)

I am building a GUI using swing Jframe. I am using netbeans, because it has this nice interface that allows you to create your GUI just by clicking. I once saved just the java file of the Interface. ...
-1
votes
1answer
36 views

JPanel Not Stretching To Fill Screen [closed]

So I am trying to make a panel that stretches across my entire programs with, and has about 20 pixels worth of height. For some reason there is only a small box that is the panel. Can anybody tell me ...
0
votes
0answers
29 views

Unable to view first JPanel added at the center of frame

Have a look at my code when I try to add a stage at the center of installer screen I get nothing on opening JFrame. I achieved same code by placing add() method in overriden setVisible() method, I ...
0
votes
2answers
57 views

Add a JScrollPane to a JFrame

I have a question in relation to adding components to a Java frame. I have a JPanel with two buttons and also a JScrollPane that has a JTable added to it. I am wanting to add both these to a JFrame. ...
0
votes
1answer
35 views

Resizing JFrame add a lot of memory

I was creating a simple JFrame window and check the windows task manager for memory usage and when I tried to resize the JFrame using the mouse pointer not the maximum button it add a lot of memory ...
0
votes
0answers
14 views

why second line of JPanel is not visible?

I need a JFrame which has one JPanel and one JTable inside ,I want to have jtable on north and JPanel on south. JPanel has two lines and second line is not visible when I add it on south of my JFrame ...
1
vote
1answer
40 views

Array of JLabel in swing

I have recently started using swing in java and I want to add to my JFrame two-dimensional array of JLabels, problem is, that I want to put on the same JFrame antoher things like JButtons etc. And my ...
0
votes
1answer
28 views

Having difficulty images/panels/buttons from the menu to the JPanel

I want to be able to dynamically add new 60x80 images that will act as buttons to open new frames. However, for some odd reason my createFrame() method fails to add any type of component into the ...
1
vote
0answers
40 views

How to make JTexArea fit the window

I have created JTextArea inserted in JScrollPane inside JPanel which is inside the JFrame. I had to put exact number of colls and rows in the JTextArea's constructor, if didn't the the JTextArea was ...

1 2 3 4 5 50