Tagged Questions
-1
votes
1answer
35 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
2answers
36 views
Java layout center with two panels
In Java, when using the BorderLayout, is it possible to have two panels in the CENTER, but both be visible on the form.
Here is my code:
guiFrame.add(guiFieldsPanel, BorderLayout.CENTER);
...
0
votes
1answer
62 views
Java GridBagLayout and JPanel Error: cannot add to layout: constraint must be a string (or null) [duplicate]
I have researched this error and I cannot seem to find a solution. I am trying to create a grid of 800 JButtons with 40 columns and 20 rows. This will eventually be used to control a domino setting up ...
0
votes
2answers
35 views
Having trouble adding graphics to JPanel
I have looked online, but I am still having trouble understanding how to add graphics to a JPanel
Here is the code for my panel class:
public class GamePanel extends JPanel {
public ...
-1
votes
1answer
23 views
Positioning a Slider in a JPanel using Java
Ok, like with everything I find it easier to learn when jumping into the deep end (Java, PHP, Air Traffic Controlling) I just try not to kill anybody in the process; however, I cannot find any ...
0
votes
1answer
27 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 ...
-2
votes
1answer
32 views
Add a JList/JScrollPane to a JPanel [closed]
How to add a JList/JScrollPane to a JPanel?
I'm having a bit of trouble figuring this out, I've created a JPanel, and what I want to do is add a list with scroll pane so that I'm able to add/remove ...
0
votes
1answer
34 views
how to use setLocation to move componets
I'm trying to set the components of this application to a set location using setLocation so far i haven't been able to move the components. There is more code but its get calling and setting this code ...
2
votes
1answer
57 views
Working with nested Panels
Trying to build out a GUI for my game but no matter what layout I work with I can't get the nest of panels to do what I like
My goal is this
...
0
votes
2answers
73 views
Positioning of Swing Components Java - JPanel, JButton, JFrame
I'm currently studying Java GUI implementations and for my next assignment we are to create a program to simulate the control of a house. We have been given pretty much free reign to build it however ...
0
votes
2answers
28 views
multiple JComboBox in one JPanel
I have a JPanel with three JComboBox. Here is the code I wrote:
public class Main {
private static String pat_order;
private static String PS_selection;
private static String ovlp_selection;
...
0
votes
0answers
31 views
JPanel not displaying image serial port
I have an images to display in a JPanel, the image is correct, it exists and Java reads it. I have a main class that has two apps. I choose this classes pressing a physical button and sending the name ...
-1
votes
1answer
45 views
Java Swing - set panel
I'm quite new to Swing, and I'm programming an application with NetBeans' UI designer.
Now I have an JPanel called "editorPanel", and it must be able to display multiple things. (so, sometimes it has ...
1
vote
0answers
38 views
best approach for switching out JPanels
I am trying to create a very simple Java GUI but I have run into an issue. I have 2 panels: 1 which adds data and the other that views it. I was using card layout but realized it does not update the ...
0
votes
1answer
46 views
GridBagLayout constraints not working?
Here is my code that uses GridbagLayout
public IntroPanel(){
JPanel intro = new JPanel(new GridBagLayout());
JLabel label1 = new JLabel("Test test test");
label1.setFont(new ...
0
votes
2answers
43 views
JPanel within JPanel
Is it possible to have a panel within a panel in one method in Java?
Like If I created a JPanel within a method called, CreatePanel, could I add another one below it? I'm trying to add two or ...
0
votes
1answer
62 views
Not able to create a login form in java Swing
I have to create a basic Login Form in Swing on JButton ActionListner. So i wrote the following code:
private void Balance() throws IOException {
getContentPane().removeAll();
JPanel test = new ...
1
vote
1answer
43 views
Rightmost JButton must always be visible inside a JPanel
I have a header panel (JPanel) with a set of icon button (1-to-many) and a single button (JButton) with a symbol. When I resize the panel, I want the button with the symbol to always be visible ...
2
votes
2answers
150 views
How to arrange multiple panels in JFrame
I am trying to make a simple calculator to practice Graphics (i am a complete GUI noob). I am having some problems with having unneeded spaces after Polyashenkos Calulator and the text area and the ...
0
votes
3answers
75 views
Why doesn't my JScrollPane shows my JPanel?
I have a JPanel and I want it to be able to be scrolled, so I am adding it to a JScrollPane, but my JScrollPane doesn't show my Panel completely. just a very small corner of it is shown and it ...
0
votes
1answer
25 views
Maintain JComboBox Size
I want to make an account screen for a project, but I'm still new to GUI's. This is my first time working with a JComboBox and I'm having a bit of trouble. I want to basically place the JComboBox ...
0
votes
1answer
45 views
Uncompilable source code java.awt.Container.add
Okey, so i get a problem with my GUI. i get this error i have never gotten before when doing the exact same thing. I'm even using old code. and I'm doing an exam so I'm even more stressed since i ...
0
votes
3answers
107 views
How to put two java swing JPanels next to each other and have a table in it?
I am trying to build my own "Battleship" game and have problems with swing.
I now read endless docs on oracle tutorials on LayoutManagers, but not any of them works as I understand them. They only add ...
0
votes
1answer
64 views
Adding elements (i.e. JLabels) outside of the set layout
As part of a project we've got to have 9 boxes, here I've just implemented alternating colors as an example in place of the images we should be using. But whilst I want these 9 JLabels in this grid ...
1
vote
2answers
120 views
Dynamically adding JPanels to a JScrollPane
I have a GUI that looks as follow:
When I push on the button addComponent there are new JPanels added to the scrollPane(1), the JPanels are added but the scrollpane is not scrolling, what happens is ...
-1
votes
2answers
56 views
Jpanels don't show up as defined size
Hello while trying to build my Java GUI I keep running across the problem that my JPanels keep resizing or they just show up as small collapsed squares. I defined the size of each JPanel using the ...
1
vote
1answer
81 views
How to use JCheckbox array in JPanel array
I used the code from Hovercraft Full Of Eels and manipulated it a little to get the numbering as I wanted. It looks good now and I can read the status but I can't figure out how to manipulate the ...
0
votes
3answers
49 views
Aligning components on two panels which are using flow layouts
I have two panels which are using flow layouts. These panels have same number of components (labels and text boxes). How do I align them?
0
votes
0answers
35 views
calling a JPanel stand alone class from another class to be display when a button is click [duplicate]
the issue is that the other class(Clients.java) i want to call is a stand alone class not define inside the PosFrame.java class. i want to be able to call the Clients class into PosFrame when a button ...
0
votes
3answers
78 views
Details JPanel with variable length fields
I'm trying to create a Panel which contains N rows and 2 columns, where the first column is a label with a variable length but within certain limits (it varies length according to Language), while the ...
0
votes
1answer
42 views
JPanel Format Problems
I have a 2 JPanels, 1 a button Panel and one a Graphic Panel. I would like the button panel to situated right below the graphic panel but the button panel cuts off the Graphics Panel in the middle. ...
0
votes
0answers
65 views
JPanel visibility when using SpringLayout
I have a class that extends JFrame. I have set SpringLayout for the Content Pane of this frame. I created another class which extends JPanel, set the layout to be SpringLayout and added a few ...
0
votes
1answer
50 views
JButton positioning on a JPanel using GBC/GBL
I was wondering how I could position my button to the center of the JPanel. As of now the button is located on top of my "mms" (used as my background image) but centered at the upper edge of the ...
0
votes
2answers
38 views
Expand a JPanel as large as possible
I have a JTabbedPane, in which I insert an extension of JPanel, in which I insert a JSplit.
My problem is that the Panel auto-set to the smallest dimension possible, the one that is just enough to ...
0
votes
0answers
63 views
How to switch out panels on a button click?
I am in need of creating a unique style of GUI where the user clicks something on the left side of the frame and the panel on the right changes. For example, the user clicks something that says ...
0
votes
0answers
109 views
Switching between Panels in a single JFrame [Java Games]
I am trying to create a game where the player will be able to click on characters on the screen and initiate a puzzle.
I have created a GameView (displays the characters) and ClickableGames (holds ...
0
votes
2answers
111 views
Replace Component in GridBagLayout
I created a Class that extends from JPanel which layout property is GridBagLayout. I basically need to display an array of JLabels (grid) but i'm not able to replace a component once it's created. ...
1
vote
1answer
102 views
how to put a table and 3 buttons in a JFrame
Hi friends I want to layout 4 entities in one frame
A JTable
3 buttons
For this I created a JFrame and put 2 JPanels inside that JFrame. One JPanel contains a scrollablePanel which holds a JTable. ...
-2
votes
3answers
130 views
How to override the default layout manager for a JPanel?
How does one override the default layout manager for a JPanel descendant? I have my own class and want null to be the default.
0
votes
0answers
65 views
Unable to apply width to JPanel when using SpringLayout
Want to set width to JPanel which is created through SpringLayout.
As there is only two components in JPanel so don't want that panel take full width.
JPanel parentPanel = new JPanel(new ...
0
votes
1answer
124 views
adding multiple buttons using JPanels
I have created a simple compass program that moves the GUI box around the screen and I am now progressing on to adding NE, NW etc, this involves using JPanels as this allows multiple objects. My issue ...
1
vote
4answers
425 views
How can I align elements in JPanels / JFrames?
I'm completely new to using the GUI in java, so I'm having a bit of trouble figuring out how to align everything that I need to. I have to panels in my JFrame that I need to align (One to the left, ...
2
votes
1answer
140 views
how to minimize a panel inside a container
I have three buttons close,min and max.
When i want to max it then it will take the shape of the main container and overlaps all the panel and when i close it then only that panel gets affected. But ...
0
votes
0answers
75 views
NetBeans custom instance of JPanel [closed]
I am creating a new instance in NetBeans of a JPanel and calling it with different arguments and all of the visual items (JLabels etc) do not show up.
/*
* To change this template, choose Tools | ...
0
votes
2answers
122 views
JButton text not in the icon and setBounds not working
I have a panel something like this:
class A extends JPanel{
private JButton button;
A(int width, int height){
setSize(width, height);
button = new JButton("text");
...
1
vote
2answers
52 views
Refreshing JPanel to a new one
Is it possible to have a frame where by a new panel in that frame refreshes to the next panel, if you click the 2 link for example.
Is there easy code for this?
The picture below illustrates this ...
0
votes
1answer
44 views
displaying next card from a card itself in CardLayout [duplicate]
Possible Duplicate:
Parent container/panel for a CardLayout
How to display card panel from a card panel itself(whose layout is not CardLayout, but which is contained in a panel having ...
0
votes
1answer
74 views
Parent container/panel for a CardLayout
How I can get the 'container' panel for any panel in CardLayout.
That is, if a panel is a card
in another 'container' panel, then how to get reference to this 'container' panel, from the card?
...
1
vote
1answer
358 views
Set size of jpanel on a JFrame explicitly
I have JPanel with a border, the problem is that when I add the panel on the JFrame it takes the panel size although I set the preferred size for the panel using setPreferredSize. The layout of the ...
1
vote
3answers
360 views
JButtons inside JPanels, fill up the whole panel
I've been struggling to set a specific size to a button inserted into a JPanel with a GridLayout.
The button always fills up the whole panel, whereas if I remove the gridlayout, the button won't have ...




