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 ...
0
votes
1answer
46 views

Listeners for JButtton defined in another class and used in JFrame

I am working on from. Here in this frame on Button click of 'add Record' I add a panel to Jframe which is defined by extending JPanel class. Now I want that on button click of 'save' created in Panel, ...
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
3answers
58 views

JAVA - How to change states between single keyPressed of character 'F' / 'f'?

At the moment , when I hit F or f : private static final char FILL_POLYGON_LOWERCASE = 'f'; private static final char FILL_POLYGON = 'F'; @Override public void keyTyped(KeyEvent keyEvent) ...
0
votes
1answer
53 views

by not using JPanel and JFrame can i still open a new window if a function returns true? How can I add JPanel or JFrame to this otherwise?

So this is the constructor for a window setLayout(new FlowLayout()); username = new JTextField("Username"); password = new JTextField("Password"); loginlogo = new JLabel(logo6); login ...
0
votes
2answers
59 views

Replacing a JPanel with a different JPanel

Hi this is a bit of a basic question. In my code I create a gui in a constructor then nest a ActionListener class to handle button changes. This code will create the gui and the action listener runs ...
0
votes
0answers
85 views

keylistener added to JPanel not working

The following is a piece of code in a snake game I'm making, and I have trouble with making a KeyListener function. The game is a JPanel inside a JFrame, and the KeyListener is added to this JPanel. ...
0
votes
1answer
133 views

performing ActionListener within the JPanel

Here, i wanted to perform an action when a button is pressed, it is quite easy but the main problem is that to be performed within an extended JPanel. There might be an easy solution ...
2
votes
2answers
529 views

How to add JPanel by clicking JButton?

I'm trying to create a small GUI, it has 2 JButtons, and 2 JPanels with some drawing animation on each of them. By default it must show first JPanel, and by clicking on second JButton I want to see my ...
1
vote
1answer
92 views

Linking Together a JPanel and paintComponent

How do I get paintComponent to work within my drawArea JPanel? Additionally, my attempts to set the drawArea's dimensions have failed. No drawing occurs once running, and the JPanel is minimal size. ...
0
votes
2answers
132 views

Pass data via jDialog to another jPanel

I create a jPanel and I open a new jDialog when I click on button (dlgSegments is a JDialog that opened): JButton btnAddSegment = new JButton("Add GeoSegment"); btnAddSegment.addActionListener(new ...
1
vote
2answers
144 views

ActionListener does not work

I am trying to create a custom panel for a very basic statistical calculator program. I have buttons from one to 9 to enter the numbers, and a single inner class which implements ActionListener to ...
0
votes
0answers
111 views

Action listener/repaint not working?

I'm having issues making action listener to force a repaint on my custom paint component given the four string variables supplied by their respective jtextfields, which was inputted by the user. The ...
2
votes
3answers
185 views

Can I add an ActionListener to a JPanel

I am creating a swing program which basically has a lot of buttons, and I was thinking that instead of adding the listener individually to each button, if I could add the listener to the JPanel ...
-2
votes
1answer
94 views

read JPanel content

Is it possible to read the content of a JPanel? In my situation, I've got a main JPanel that I called container, and 3 other JPanels inside it: p1, p2 and p3. I've also created a class that extends ...
-2
votes
1answer
210 views

my java calculator is compling perfectly -why it is not working? [closed]

import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.math.*; class calculatorpanel extends JPanel { private JButton display; private JPanel panel; private ...
-1
votes
1answer
121 views

List of buttons and label in java actionListener

So i have a JList, and each row is a JButton followed by a jLabel. And what i need to do is when i click on the button it call a function, but right now wherever i click on the row, it calls another ...
2
votes
2answers
376 views

how to add buttons to jpanel? [closed]

can someone please check this code :): ja.addActionListener(new ActionListener () { public void actionPerformed(ActionEvent e) { klicks++; if(klicks == 35) { ...
3
votes
1answer
1k views

Snake Game Java Gui

Hello I've started to develop a snake game recently. I'm in the beginning stage where I have a moving object and a dot for it to eat but my main issues are how can I check if the snake "ate" the ...
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
1answer
143 views

JButton with actionlistener does not execute its code

I'm developing a litte game in my freetime, but i encountered a problem which i don't really understand why its happening. public class PauseMenu extends JFrame { ... /** * Create the frame. ...
3
votes
4answers
807 views

Using addMouseListener() and paintComponent() for JPanel

This is a follow-up to my previous question. I've simplified things as much as I could, and it still doesn't work! Although the good thing I got around using getGraphics(). A detailed explanation on ...
0
votes
2answers
2k views

Adding background image to JPanel on button action

What is the best way to add a background image to a JPanel/JLabel when a JButton is called? I know how to get the JButton action and such. I just can't figure out or find a way to get the background ...
0
votes
2answers
597 views

Timer in JPanel

I'm trying to create an application, and I would like to add a clock. I'm making the Clock using a JPanel and an ActionListener, and would also like to use a Timer. The Swing Tutorial says that to ...
0
votes
0answers
82 views

ActionListener to clear panel

Im trying to make a little application. I have made my "Home" Window with a series of button. What im asking is: How do i make the actionlistener to button 1 (b1) to clear the "Home" screen so i ...
3
votes
2answers
3k views

Add actionlistener to jpanel

I would like to know if there is any way to add an ActionListener to a JPanel? I have no problem adding those to JButtons, but JPanel seems not to have such a method. Basically I have a bunch of ...
1
vote
2answers
167 views

Calling method from different class

I've got an ArrayList of objects that need to be printed out on the screen. I have got a button and a listener that should call a method in a class that extends JPanel which is added in a MainFrame ...
0
votes
2answers
444 views

Java - How to add new JLabel and JTextPane to JPanel when button is pressed

I have a JPanel to which when a button is pressed I want to add a new JLabel and JTextField too. However, I can't seem to get it working. Is there an issue with my ActionListener, and if not, how ...
0
votes
4answers
456 views

Delete a specific button

I have a JPanel in a JFrame that contains 5 buttons. In another JPanel there is a button called "delete button", what I want to do is to click this button and than choose what button of the other 5 to ...
0
votes
1answer
320 views

Communicating between JPanels

First off, I'm new to Java, so please be gentle. I have a JFrame which has two 'JPanels', one of which is a separate class (i've extended the JPanel). Ideally I'd like to 'dispatch and event' or ...
0
votes
1answer
261 views

difficulty with javax.swing.Timer

I have a runtime error when I press the tick button. I am trying to use javax.swing.Timer when the tick button is pressed to fire an event So if anyone have any suggestions I would appreciate them. I ...
1
vote
1answer
133 views

Weird JPanel behavior when calling repaint()

I have a class PanelFormes that extends JPanel, which I use as a container. I also have two other JPanel, one to paint some figure in it, the second one contains buttons. These two JPanel are included ...
1
vote
0answers
201 views

ActionListener's, Buttons and JPanels

I have 5 classes that extend JPanel with at least one JButton on them for "navigation". All five of these classes will eventually become an interactive Applet (I know applets are archaic but I am ...
1
vote
1answer
2k views

Updating JPanel contents through ActionListener

I have a JPanel that displays a group of JLabels which are all computed and printed on the fly inside of a method. The contents of the labels are held in an ArrayList In another method more objects ...
0
votes
2answers
675 views

Accessing JFrame created in main from actionlistener

I've created a frame (mainframe) for my program in the main class which I want to add and remove panels from in order switch between different screens of my program. The first screen of my program is ...
1
vote
1answer
321 views

trouble executing actionlistener in swing applet embedded in html

Following is the applet code below: import javax.swing.*; import java.awt.*; import java.applet.Applet; import java.awt.Graphics; import java.awt.Image; import ...
2
votes
2answers
131 views

Using a Derived class of a Java Swing control to create listener for self

At the outset: I know that what I am doing is bad design. I am trying this to get a better feel of Java - what is possible, what is not and why? I have written the following code: import ...
0
votes
1answer
3k views

How to add ActionListener to a JButton added to a JPanel?

My aim is to make a paint type application. Thank you for your suggestions.. but there is still error in the code. In netbeans IDE error : 'method addActionListener in class cannot be applied to ...
3
votes
2answers
558 views

How to have my JPanel appear when an action listneer is called

I have a JPanel in another class and I want it to run when I click the "enter" button. For some reason it wont do that, I tried to write a simple system.out.println in my code and that works but when ...
1
vote
4answers
1k views

JFrame not working correctly

This is making me very angry, I have worked on this for 2 days, have 2 books open and have looked through them, and STILL can't get this program to run the way I want it run. I'm getting to the point ...