0
votes
3answers
52 views

Java: Add panel to existing panel after runtime

Im trying to add a NEW card to an existing JPanel(cardLayout) with the click of JButton and then goto that new card but i get Null exception as the new card is not registering. Ive tried searching ...
-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
0answers
24 views

Simplest process for switching displayed classes that extend JPanel in JApplet

I have several classes which extend jpanel, many of which have parameters in their constructors. Each already contains components, and they need to handle information and pass this information ...
0
votes
1answer
45 views

Switching JPanels - Doesn't switch when clicking button

I've made a program and i'm having difficulty with switching JPanels on the click of a button. There are four buttons> "Time" "Hotels Menu" "Price" and "Exit" Exit was simple to do. The rest need ...
1
vote
2answers
64 views

CardLayout, in JFrame or JPanel?

I have to make a game for school and I've been having some trouble with switching JPanels with a click on the JButton. I want to use a CardLayout, but I'm new to Java which makes it very hard. My goal ...
0
votes
1answer
62 views

CardLayout .show() method not working

Hi I am new enough to Java and I am trying to learn to use card feature in window builder but I am having a problem using the show method. When I click the button it doesn't change to the desired ...
0
votes
1answer
45 views

JPanel won't close after switching cardLayout

I have multiple JPanels in my cardLayout. When I switch to another JPanel it will not close down the previous JPanels and I'm left with many JPanels open at the same time after using the program: ...
0
votes
1answer
27 views

Applet using CardLayout is blank

I have spent so many hours trying to research the problem with my code but I just cannot seem to find it. I have no experience using CardLayout, but based on other instances I feel I have implemented ...
0
votes
1answer
28 views

When to create a Panel for CardLayout?

I use CardLayout with MVC and try to understand, when i should create the Panels used by the CardLayout. For Example: A DetailPanel to view and edit the Details of a DataItem is shown, when i ...
0
votes
1answer
66 views

JPanels won't switch in cardLayout

I have created a class with several JPanels and I want to switch between those JPanels using cardLayout. Each Jpanel and cardLayout are their own methods. When I click on any button it should display ...
0
votes
0answers
34 views

Change java content pane works only once?

I have tried to make an application with multiple content panes which will have buttons and labels and all the methods I have tried so far only seem to work once. I have only 2 buttons for now and ...
0
votes
1answer
58 views

How do I add JPanels, created by methods, to cardLayout.add();

below is my user class for guiFrames. I want a class that creates several JFrames with methods and pass those methods into cardLayout. The reason for this is each JFrame will be have different buttons ...
0
votes
0answers
116 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
1answer
116 views

JButton twice setText to JLabel after JPanel revalidate()

When I click button I want to add one button to panel, which I did, but my program doesn't work like before. This is my program before: South panel with pink buttons is cardlayout panel. When I ...
1
vote
1answer
86 views

CardLayout not switching panels when called next()

This is a sample demo program that I got from Oracle's Java Tutorial website. Originally the method itemStateChanged() was implemented like this: public void itemStateChanged(ItemEvent evt) { ...
2
votes
1answer
149 views

Changing Panels using the Card layout [closed]

Hi Im sorry if this has already been posted but I looked hard and found other codes that I could not understand very well. I am new to java programming and would like someone to point me in the right ...
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
75 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? ...
0
votes
3answers
106 views

Dynamically updating CardLayout not working

My code uses Card Layout to display (predefined) JPanels with JButtons to the user, and then show a dynamically generated JPanel with feedback on their response, before proceeding to the next ...
1
vote
2answers
426 views

Switch between JPanels using JFrames

I have two views : test1 and test2 Switching from test1 to test 2 works fine, but when I switch back from test2 the contentPanel is empty. This is my code. Can someone point out what I'm doing ...
1
vote
1answer
300 views

How to Change java Cardlayout from another separate class

Please I have been trying to switch CardLayout from another class (JPanel) which is one of the card on the CardLayout, I have search and made research about this for a very long time but found nothing ...
1
vote
0answers
133 views

How can I call cardlayout.show from another class?

I'm trying to call the method cardlayout.show to class below. protected void makelabeltxt(final String text, GridBagLayout gridbag, GridBagConstraints c, int width, int height, final String panel) { ...
0
votes
0answers
100 views

Switching JPanel with cardlayout using button from other JPanel new to java

Is't possible to use 3 different buttons that is placed on top panel to switch 3 different panels on the bottom panel? and also the 3 different panels are from other classes?Sorry for noob question ...
1
vote
2answers
92 views

How to Contract Card Layout

I've a mainPanel with VerticalLayout (org.jdesktop.swingx.VerticalLayout). main panel has several sub panels. One of them is a dynamically changing panel according to the user selection. So, I've set ...
1
vote
2answers
109 views

CardLayout performance?

I thought that CardLayout uses a HashMap to store its pairs (panels and associated string identifiers) but looking through the CardLayout class I noticed that it actually uses a Vector. This is how I ...
7
votes
3answers
405 views

Switch to specific JPanel using Cardlayout

I've started working on a Java desktop application using netbeans. I have 7 different screens and to represent them I am using JPanel. One JPanel to represent each of them and one to contain all of ...
3
votes
1answer
378 views

Resizing a JPanel inside a JFrame

I am new to Java, started learning swing and have a problem with resizing a JPanel inside a JFrame. I am following this tutorial: ...
3
votes
1answer
77 views

Why are the cards not appearing on JPanel CardLayout?

My application consists of two JPanels that will be cards on a MainPanel. The code is as below. For some reason, the panels don't appear. I'd be very grateful for your help :) MainPanel.java: public ...
3
votes
2answers
544 views

CardLayout in Java change by action in one of the 'cards'

I am making a simple game using a JFrame. I have made a simple "Start" screen which basically consists of a String and a JButton. I am picking up the button click with the actionPerformed(ActionEvent ...
2
votes
1answer
230 views

how to show next Card Item using CardLayout?

I have created a class which has a panel named cards and its layout is CardLAyout. I have added card items. In this class I want to create a separate method by calling which, layout switches to next ...
0
votes
1answer
214 views

Components not displaying correctly when dynamically adding a JPanel to CardLayout

I was hoping someone would be able to help me with the following problem. I am creating a Java desktop application in which I have a JPanel topicPanel that contains two JPanels; topicButtonsPanel ...
4
votes
2answers
966 views

Java how to add image as background in layout

I have a class that uses a CardLayout which has two cards that have a button on them. What I would like to be able to do is put an image that would act like a background such as a desktop background ...
2
votes
3answers
723 views

How to make an added jpanel visible inside a parent Jpanel

I am using netbeans for designing my UI. I have a MainFrame.java,which contains two panels;namely headerPanel and bodyPanel. In headerPanel I have put three buttons,let it be button1,button2 and ...
0
votes
2answers
490 views

Navigating between multiple panels

Can anyone tell me how to go about coding for navigation between multiple JPanel classes taking the event trigger from JButton from the objects (panels) themselves? I have read about CardLayout. The ...
1
vote
1answer
84 views

Having max size when using cardlayout

When I add several JPanels to a parent JPanel or JFrame with cardLayout, the size will be set to the biggest JPanel between all of them, I want the JFrame to have the perfect size for each JPanel, ...
0
votes
0answers
199 views

Frame size change from one Panel to another when using CardLayout

Here's what I did: I created a new JFrame Form using Netbeans ( drag and drop ) I added a new JPanel with some stuff in it The JFrame is not Re-sizable I changed the JFrame layout to CardLayout I ...
8
votes
2answers
374 views

What's so special about CardLayout vs manual adding/removal of JPanels?

There have been many times on StackOverflow where a user asks a question like this... I have a main JPanel that contains a child JPanel. When the user clicks a button, the child JPanel should ...
1
vote
1answer
221 views

Reset or Reload a JPanel contents in Card Layout depending on the selections in other panels

I'm using a card layout for creating a series of panels. I created a JFrame class. And to the instance of this frame class, obtained contentPane and set CardLayout. Added all the panels to this ...
0
votes
2answers
345 views

CardLayout issue

I have a card layout, first card is a menu. I Select the second card, and carry out some action. We'll say add a JTextField by clicking a button. If I return to the menu card, and then go back to ...
1
vote
2answers
2k views

Adding JPanels from other classes to the cardLayout

I've got 3 windows in 3 separate classes and I would like to use cardLayout so that when you click the next button, the next window will appear. How do I add JPanels containing different elements to ...
1
vote
1answer
273 views

Wrong JPanel displayed in CardLayout. Issues with getGraphics()

I have a top-level GUI class called SpacePotaters (subclass of JFrame) and I add a JPanel called panelViews (which uses the CardLayout layout manager) to its content pane. Among other things, I add a ...
1
vote
4answers
646 views

JPanel Won't Focus After Switching in CardLayout

I am creating a Tetris clone as a personal project. In order to switch between the menus, I am using a CardLayout, but I have come across a problem. When I switch from one menu to the other, the focus ...
3
votes
4answers
1k views

How to set a JFrame size to fit the CardLayout displayed JPanel?

I have a JFrame containing a set of JPanels in a CardLayout. Each JPanel has a different size and I want the JFrame to adapt to the size of the currently displayed JPanel (not the JPanel to adapt to ...
0
votes
1answer
85 views

Reinstantiating jpanels

I need to reinstantiate a JPanel in an application I'm writing (basically it's an input window where the user can build a graph, and I'd like the user to be able to empty it, so using CardLayout is ...
0
votes
1answer
615 views

Nullpointer Exception when passing JButton actionListener to another Java Class

I have two classes (MainMenu and CancelListner). When i called an instance of my CancelListener to use the proper actionPerformed method, i get a NullPointerException. In my MainMenu.java class, i ...
1
vote
1answer
313 views

Design Issue: MVC model with Java CardLayout application

Sorry for the vague title, I am trying to layout an application i have unfortunately starting coding without following proper MVC architecture rules. I have an application that has the following ...
1
vote
1answer
1k views

Change size of JPanel using CardLayout

is it possible to change the size of Jpanels when using Java CardLayout?