1
vote
3answers
62 views

JPanel not shown properly

So, I'm starting with the basic visual Java components, and have trouble to use them accurately. Here is my new problem: I'm trying to implement a 3 parts panel: east, center, west, but can't have a ...
0
votes
3answers
68 views

JTextfield location won't change

I've been trying to set the location of my text field but it seems that it is only being generated the the middle of the JFrame. I want it in the north left corner, how do I do that? I've add the ...
1
vote
1answer
24 views

GridBagLayout weightx and weighty specification

I have a JPanel that I have specified as having GridBagLayout. The grid that I have drawn (on paper) is 8x8, and I have all the components drawn out as I would like them to appear. For each ...
0
votes
1answer
32 views

Make JFrame display other JFrame without opening new window

I'm not sure if this has been answered or the correct way of phrasing it, but have had no luck in my search. I have 4 JFrame guis all in their own classes: a main gui and 3 others. I want to know if ...
0
votes
3answers
41 views

Need help using GridBagLayout

I want to make the password label and text field below the ID..but i`m kind of new to GriBagLayout. I hope you can help me. Here is my code: class LoginPanel extends JPanel {//login components ...
0
votes
3answers
35 views

How would I use LayoutManager to get a layout like this?

So, I'm totally new to LayoutManager. I've already read about the existing LayoutManager but don't which the best is to get a Layout like this. The different colorboxes represent JPanels. Which one ...
0
votes
0answers
13 views

JPanel adjust to JScrollpane and children

I'm trying to make a ToDoManager in java. For now i have about what i want it to be for a basic version. But i'm having a problem with the size of a panel. I have a main JFrame. This contains a ...
-1
votes
0answers
30 views

JButton setText deform the parent panel

When I change the text of a JButton it deform the parent panel. Can I "block" the panel or something like that? jpg
0
votes
1answer
23 views

Vertical filling of GridBagLayout in Java does not work

I am having troubles getting the layout right. I have a Class which extends JFrame and has a JPanel which has a the GridBagLayout as layout manager. I want 4 buttons which should be layout in this way ...
0
votes
1answer
49 views

Swing containers within containers

I am somewhat new to the whole java swing scene, and I just want some clarifications due to a slight confusion I have. I have learned about orientation and buttons and all the basics. Also pointing to ...
1
vote
4answers
57 views

Make bottom panel in Borderlayout to expand like center panel

So it's a pretty simple problem, but I can't find a simple way to implement it. I basically have 3 instances of JPanel: north, south and center. Normally, if you play with window height, the center ...
-1
votes
2answers
32 views

Making a JPanel and inside add multiple JPanels

I need to build in swing a screen that is something like this image. I have a main panel and in that panel I need to add multiple columns 2 vertical columns and 3 horizontal. This columns are Jpanels. ...
-2
votes
3answers
55 views

Button is not showing up in the right spot [closed]

how can I get the buttons to appear on the line underneath the textarea? //Imports import java.awt.CardLayout; import java.awt.Color; import java.awt.Component; import java.awt.Insets; import ...
0
votes
1answer
64 views

One part of layout manager not working and ActionListener not working

I am trying to add the buttons to the mainPanel after i click the button, currently only appetizer is set, The second thing is the GridLayout on my mainAppPanel is not working, the rows ,vgap and ...
0
votes
2answers
20 views

float checkboxes on expand in Swing

I've made a simple GUI with 2 lines of checkboxes. The checkboxes are all the same size. When I maximize the application, they are anchored on the left so it looks a bit out of place. I would like ...
1
vote
1answer
29 views

Swing size issue for different screen resolution

I'm using Java Swing and I want to it to set its JFrame size and the size of inner components size based on Screen resolution. I also want it to be compatible on any device like Tablet, laptop. Any ...
0
votes
1answer
46 views

BorderLayout setSize issue

Before you come with GridBagLayout suggestions, I've tried that but I couldn't get it to work. I want a frame with the size 800 x 800 and with a center panel of 600x600. Right now, when I run it the ...
-1
votes
1answer
33 views

Getting Size of JPanel Object from another class in java

How can i get the Dimension (no matter if prefferedSize or Size) of a JPanel which is build in another class? in the class where i build the GUI i instanziate a new Panel like this: PlotPanel ...
1
vote
2answers
47 views

JPanel elements are not appearing

I'm using the Swing library to ask a user for their zipcode, but all that is appearing is a box, without the text box, or any of the other elements that I've added in (see code). Also, you likely need ...
0
votes
2answers
28 views

final JPanel with added labels (java)

Iam trying to position my jlabel in a jpanel what is made final because of an actionlistener. final JPanel panelPayDetails = new JPanel(); panelPayDetails.setBounds(250, 25, 350, 250); JLabel ...
0
votes
1answer
24 views

JPanel with BoxLayout and ScrollPane as its Parent

I have a JScrollPane (with both scrollbars optional (should not cause the problem) Inside of the ScrollPane is a panel with BoxLayout and X_Axis - align. (it contains arbitrary number of Panels with ...
-3
votes
1answer
73 views

Could anyone help identify the most likely suspect in this visual bug? [closed]

I have some kind of graphical bug with components that are displaying in my Java application (JSpinners and JFormattedTextFields) and I don't know what could possibly cause it. Here they are in their ...
2
votes
1answer
30 views

GridBagLayout works for higher resolution but not for lower

I use a GridBagLayout to center the menu for my game in a jframe and it works fine on my stationary computer with a screen resolution of 1920x1080 but when I use the exact same code but on my laptop ...
0
votes
3answers
40 views

BorderLayout.CENTER doesn't center

I can't get my JLabel to center in my JPanel after adding a ChartPanel to it: JPanel panel = new JPanel(new BorderLayout()); panel.add(visualiser(ternaire), ...
0
votes
0answers
30 views

Scheduler - override, GridBagLayout

I'm writing something like scheduler (lesson plan). As shown above, the text field is overwritten. How can check if the coordinates x / y is someElement to avoid overwriting?
1
vote
0answers
54 views

JLabel display too short in GridLayout

I have a problem here where my GridLayout fixed the size of every JLabel. the display by JLabel is too small for it to show the Object(a text). Here is part of my code ` ...
0
votes
2answers
40 views

Java, switching to specific cards not working

I am trying to make a simple app to switch between cards. I am using NetBeans 7.3 if it makes a difference. The program is also an applet. Hopefully this question not too specific but I've literally ...
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 ...
2
votes
1answer
32 views

How to make JLabel not effect size of other elements in GridBagLayout

my JLabel resizes the JButtons on my GUI I have made here. Is there a way to make the JLabel called answer not resize my buttons? here is my code: import java.awt.Color; import ...
0
votes
2answers
27 views

Java Horizontal BoxLayout with Vertical Layout Inside

Okay, so I have a BoxLayout set to Y_AXIS for a main panel I have in a JFrame. I tried to set the actual Frame to a BoxLayout set to X_AXIS then add my main panel to my JFrame, but I get an ...
-4
votes
0answers
38 views

Java: null vs GridLayout? [closed]

I have created a checkerboard program, it works fine but i need to resize my java frame manually for it to work, can someone tell me why? I am using setLayout(null). I works well with gridLayour
1
vote
1answer
42 views

Adding a TextField to a program

I am making a better version of an application that was given to me. I still need to have the same components as the program that was given to me, I just need to reorganize it. I was also told not to ...
1
vote
2answers
30 views

How to make an individual JPanel larger within a JFrame

I am making a game and i have multiple panels within my frame. panel4 is supposed to contain my wheel, the problem is that panel4 is the same size as all of the other panels on the board when i need ...
-2
votes
1answer
27 views

Trouble with JPanels realizing the appropriate size

I have a project due in about an hour and I need to figure out the problem in my code before submitting. In essence, there are two classes: one is a game and the other is a gui that should contain ...
0
votes
2answers
40 views

Change Background and size of panels in card layout

I have some panels in a card layout container (no idea if that is correct terminology). I can't find a way to set the location, or size of these panels inside the container. I tried setBounds and ...
0
votes
1answer
37 views

How to set absolute position on JPanel wich in BorderLayout

I have a main panel like something this: JPnael mainPanel = new JPanel(); mainPanel .setLayout(new BorderLayout()); And i including sub panel thus: mainPanel.add(new JPnael(), ...
0
votes
3answers
36 views

How to set the location of a JRadioButton?

I want to organize my buttons in a 3x3 box. Which layout should I use and how do I use it?
0
votes
1answer
39 views

Problems while making a GUI with NetBeans: GroupLayout can only be used with one Container at a time?

I'm making a GUI with Netbeans in JAVA. My idea is something like this: JFrame -> contains a JPanel -> call a JDialog. -> call a second JDialog The idea is ...
0
votes
2answers
35 views

Set the boundaries of a scrollable list

How to set the boundaries of a scrollable list? How would I set the boundaries of this list to make it not take up the hole application? I have searched for about an hour now and found nothing that ...
-1
votes
2answers
55 views

How to set the location of a button anywhere in your JFrame

What I want to do is put the button down the bottom left of the application. Could somebody just give me an example of how to do it? This is what I have: Here's my code: super("Test"); ...
-1
votes
1answer
47 views

Margin with a JPanel inside another JPanel

I am using JPanel to simulate squares. The idea is to put a sort of filter in front of a JPanel. The first JPanel contains an ImageIcon and a background color. A second JPanel containing a background ...
1
vote
2answers
42 views

How to stop JTextFields from running off the Frame

I want to stop the text field from running off the GUI or print the text field on a new "line". Here is the code: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ...
-3
votes
0answers
38 views

Swing absolute layout appearing very small [closed]

i have a problem once i run my java GUI code, where it starts in a really small windows and i have to drag it by the mouse to maximize it. it happened since i used the absolute layout instead of ...
2
votes
1answer
32 views

Can I mix Horizontal and vertical boxes in Java BoxLayout?

I have to make a simple program and the GUI would look like this: ,,,,,,,,,, | Read | <---a Button `````````` name |``````````| <---a Textfield `````````` | | ...
1
vote
3answers
59 views

Put a JButton in the center of the screen with BorderLayout

How to add a JButton into the center of a JFrame with BorderLayout()? I tried using BorderLayout.CENTER, but instead of the center of the screen, it gave the top-center of the screen. Or do I have to ...
2
votes
2answers
40 views

Resizing panels in a GridLayout

I want this: My frame is a GridLayout (3,2), and all I can have is this: I put the button in a panel, I think it's easier. But how can I change the size of the grid?
2
votes
4answers
66 views

which LayOut Manager is most suitable for my GUI?

I am struggling with the Layout Manager choice. I have to set a GUI which is basically like a stack, for instance: --------------- ' ' ' --------- ' ' | | ' ' --------- ' ' ...
1
vote
1answer
78 views

Cleaning up a Nested J panel

Rebuilt the SCCE for you guys. My goal is this The general idea is that clicking on the title bars of the menus (right side) will collapsible (set visible to false) the content panes associated ...
1
vote
3answers
51 views

How set location of an image in a JFrame

I'm trying to set the the location of an image in a JFrame. I thought label.setLocation(100, 100); would set the location of the image to 100, 100 (top left corner), but it doesn't seem to do ...
1
vote
3answers
125 views

JTable does not fill JScrollPane which is added to JPanel using GridBagLayout

I have a JPanel with GridBagLayout. The panel contains 2 rows, first row has a JLabel and second row has a JScrollPane with JTable inside. The table does not fill 100% of the scrollpane. Even I resize ...

1 2 3 4 5 15