Tagged Questions
1
vote
2answers
50 views
A Small Guessing Game GUI opens in two windows
Alright so here's the problem:
I created this small guessing game and wanted to make it gui based...
but it appears in two different windows -
first window is the menu(button and label)
second ...
-1
votes
3answers
64 views
Switching between JPanels in different classes
I've stumbled upon this complications and have spent more than 4 hours debugging and googling but to no avail..
Basically what I have here is 1 JFrame, 2 JPanels.
I had my JFrame setContentPane to 1 ...
2
votes
1answer
31 views
JTextPane fit to the underlaying JPanel and JFrame
I have the following problem:
I have a JTextPane on the left filled with content and this JTextPane is placed into a JScrollPane. This ScrollPane is added to the BorderLayout.CENTER of a JPanel and ...
0
votes
1answer
43 views
How do you add multiple panels to a JFrame using a loop in Java?
I have a class called DrawRectangles that takes an array of integers.
What I am trying to do is go through the numbers in the array and for each one, create a new panel using the number in the array ...
0
votes
1answer
22 views
Card Layout Java Application Won't show anything [closed]
I am trying to make a card based application. I've been trying to follow tutorials and such. Here is my code. So far its very simple. The window shows up but the textpane inside does not.
/*
* To ...
0
votes
1answer
109 views
Java - JPanel do not paint even though method is called
I try to create a game. Game logic and painting work fine if I start the game directly. But there is empty JPanel after I start a game from a menu. Why?
Start game directly:
There is a "infinitive" ...
1
vote
2answers
32 views
Combining Swing Components
Have been trying to manually write a GUI the past few days and am having a pretty elementary issues. I have a JFrame as the main window and them trying to add JPanels within it with other components ...
0
votes
1answer
10 views
Having a dilemma with jpanels becoming visible
Ok here's my dilemma I add three panels to my JFrame. The first(invisible) the second(visible) and the third(invisible).. I use the first panel as a menu, when you select a option the first panel is ...
1
vote
2answers
35 views
Why does Jtoolbar break my keyBindings?
I have been trying to use the arrow keys as part of my application. Following the best practice I have stuck with using key bindings. I gound that the arow keys do not produce a key typed event so I ...
1
vote
2answers
45 views
How to make JFrame background image transparent?
Currently, I'm using this code to generate a background image for my JFrame:
BufferedImage myImg = ImageIO.read(myUrl);
this.setContentPane(new ImagePanel(myImg));
//ImagePanel class
...
0
votes
2answers
61 views
How to add external JPanel in JFrame?
I'm working on large scale program. As you can see I have one main JFrame and about 20 menu items on that. Each menu item must pop up a new window. At the beginning I have created a JLayeredPanel ...
-2
votes
0answers
30 views
How to set Screen MAx size on a jpanel to show JFrame in FullScreen in any PC [closed]
i'm programming a desktop application to work in any screen resolution, and in different Computers(Notebook, Desktop PC...)
the thing is my JFrame size as default is full screen via this method ...
1
vote
2answers
28 views
How to assign a JPanel to JFrame in netbeans gui editor?
I have a JFrame with JMenuBar at the top.
I put a JPanel on my JFrame in the middle and call it Panel1.
Next I create another class called Panel2 extended JPanel and I put some items on that.
Now ...
1
vote
1answer
73 views
One JFrame and 50 JPanel on that or only 50 JFrame alone or any alternative?
Here is the picture of my program. All these JMenuItems are in one JFrame and I added JPanels for each of them. When user click on one JMenuItem all JPanels will be invisible and only corresponding ...
0
votes
1answer
24 views
Java GUI: Display Area and 8 buttons
I would like to have a display area and 8 buttons.
Each Button Will display different text in the display Area.
Currently I just have the Display Area, but When I try to add A button the button ...
0
votes
2answers
36 views
switching jpanels with menuItem inside Jframe
I want to know how can I switch JPanels inside my main JFrame, I have tried this code but when I click the menu item it changes then I click other menu item and does not change, I click the menu Item ...
0
votes
0answers
17 views
Problems redrawing/showing changes in JPanel
In my program I've got One JFrame and Three Jpanels.
photo
I want the far left panel's (Profile Selection) list view to force the User Profile data (Panel w/ Yellow border) to change its Border to ...
0
votes
1answer
19 views
How to Insert multiple panels in GridBagLayout
I am making a small GUI which requires at least 4 panels to be added in JFrame. I am using GridBagLayout. Each of these panels have some labels and text Areas of different length.
I inserted 3 frames ...
0
votes
0answers
66 views
JFrame not displayable
import java.awt.*;
import javax.swing.*;
public class Class4 {
public static final long serialVersionUID = 1L;
public void mainMethod(int event){
JFrame f = new JFrame("Love Test");
...
0
votes
1answer
17 views
setSize() for jpanel not working
i am trying to set the width and height of JPanel.But it is not working.
Here's the code.
import java.awt.*;
import javax.swing.*;
public class FirstGuiApp extends JFrame {
public static void ...
0
votes
1answer
19 views
Do JMenuBars not work with setComponentZOrder()?
This is a testing class, and I have two JPanels and a JMenuBar (I have overridden the classes while testing something else, these classes DO work). Unfortunately, when I try to use ...
1
vote
1answer
41 views
JButton exits JPanel
I have multiple cancel, ok, and save buttons. When the user clicks one of these buttons, I need it to exit the JPanel, but not the whole program. I have tried multiple times and everything I do it ...
1
vote
0answers
46 views
Updating a JFrame with the component from another method
I am trying to add JPanel p4 to the JFrame but it doesn't seemed to work.
import java.awt.*;
import javax.swing.*;
public class Class4 {
public static final long serialVersionUID = 1L;
...
0
votes
0answers
36 views
Java Swing Component disappears when I export my project
I have a java project that use java swing GUI for user interface and every thing is OK when I run my project from eclipse, but when I export my project into an executable jar file, some components are ...
0
votes
1answer
37 views
Why my textboxes not showing without maximizing GUI in java
I am trying to create small GUI with couple of textboxes. Shortest code is here:
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JPanel;
import ...
0
votes
1answer
31 views
Basic painting code. It doesn't work
I'm trying to draw a Rectangle inside a JPanel inside a MainPanel inside a JFrame.
In the Main Class I initialize a RoomView:
roomView = new RoomView(newropc,"Default");
And then I execute:
...
-1
votes
1answer
36 views
Best Layout Manager for creating two columns in a single panel?
I am trying to create a GUI for a program with an undefined number of rows but stay with two columns. Currently the only way I can get it to look how I want is using FlowLayout but the window of ...
0
votes
1answer
38 views
How to get location of textarea in JPanel
I have created a JFrame containing 2 JPanels(panel1,panel2).i have added panel2 in panel1.
panel1.add(panel2);
i have added a text area into panel2.
panel2.add(textarea);
finally panel1 to ...
0
votes
0answers
22 views
Resizing a Jpanel inside a Jframe at the same time
I currently have a componentlistener on my jframe that repaints the jpanel when the window is resized, but only once the user lets go of the mouse. How can I alter my code so the panel will update at ...
1
vote
2answers
58 views
JPanel: What is the simplest way to display an image?
I am working on a project and I need to display an image that I have already drawn. I need a background image and several foreground images that I can move around. What is the easiest way to do this? ...
0
votes
1answer
41 views
Adjusting GUI JPanels to fit
So for this program, I am trying to have a JToolBar on the left, and this spectrum panel on the right side. I am currently adding using a BorderLayout, but as you can see, the spectrum (in cyan) I add ...
0
votes
1answer
38 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
1answer
72 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
0answers
53 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.
...
1
vote
2answers
47 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
37 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 ...
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 = ...
1
vote
2answers
73 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
1answer
54 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 ...
3
votes
1answer
58 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 ...
-1
votes
1answer
55 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
36 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
1answer
29 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 ...
0
votes
1answer
41 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 ...
0
votes
2answers
48 views
How JPanel Actually Works?
I am quite new to Java, I am trying to create a Program where computer draw random circles, rectangles and lines then count their number that are shown right below them.
import java.awt.Graphics;
...
0
votes
4answers
52 views
Reinitializing my JPanel after pressing a button
i have a Jframe which has some panels as instance variables and one of the panels is a grid board (i am implementing Lines of action game). After my game ends I have a button "Play again" which i ...
0
votes
1answer
38 views
Add Jbutton to Jpanel
can somebody tell me what is wrong with this code i am trying to add the buttons to my JPanel
ArrayList<JButton> buttons = new ArrayList<JButton>();
JPanel createButtonspane(){
bpanel ...
1
vote
2answers
55 views
How do I register two points in a mouselistener class in JPanel?
This one's been baffling me, I've a board and I want to be able to move a checker piece from one place to another.. I've set the frame to a grid layout, and each grid cell has a new JPanel that ...
1
vote
2answers
62 views
How to repaint GUI after a certain element was removed?
I'm making an app where a user would be able to add a button to the screen or remove it (I don't have those options implemented yet). So, for now I'm manually populating it with a for() loop and ...
0
votes
2answers
55 views
JPanel Inside Of A JPanel
I am trying to get a JPanel to appear inside of another JPanel. Currently, the JPanel is in an external JFrame and loads with my other JFrame. I want the JPanel to be inside the other JPanel so the ...



