Swing/AWT/SWT :: Changing Panel In Jframe On Click Of A Button
Jun 22, 2014
I want to switch panel on click of a button and code for switching panels is written in update method (Which gets called from notify observer of another class as part of Observer pattern.
unoGameController.playGame(playerFirst.getText(), playerSecond.getText());
playGame in Panel 1 of class 1 calls another class (class 2)and data comes in update method of class 1(Observer interface).
Now for switching panels code is in gameControllerDataProcessing . I am not able to switch the panels when this functionality runs.
However if i dont call the unoGameController.playGame(playerFirst.getText(), playerSecond.getText() and directly call the update method or directly write the switching panel code . then it works fine.
btnNewButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if((!(playerFirst.getText().equalsIgnoreCase("") ||playerSecond.getText().equalsIgnoreCase(""))&&(!playerFirst.getText().equalsIgnoreCase(playerSecond.getText())) ) ){
unoGameController.playGame(playerFirst.getText(), playerSecond.getText());
[Code] .....
View Replies
ADVERTISEMENT
Apr 1, 2014
When i click on the button from bottom panel, top panel need to be redrawn. But redrawing is not happening. It happens only when resizing the applet.
public class Graphics_Chart(){
public init(){
JScrollPane topPane = new JScrollPane(new ImagePanel2());
topPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
topPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_NEVER);
[code]...
View Replies
View Related
Nov 23, 2014
In JButton's click event, I wanto to show a JPanel to print the message "Processing" on the screen. Before JButton's click logic end, hide the JPanel.
Actually, JPanel is not displayed. I do not know why.When msgPanel .setVisible(false); is commented out, JPanel is normally displayed .But do not know how to hide it when JButton's click logic is finished.
Here is the code.
loadBtn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
JPanel msgPanel = new JPanel(rootFrame);
// Show the message JPanel
[Code] .....
View Replies
View Related
Feb 22, 2015
I have buttons created on a frame and then I register the listener from a controller in a controller-view relationship.
When I click the button on the face, the action never executes for some reason. I thought maybe there was a problem registering the listener but I can call the buttons doclick() method and it executes as it should. Perhaps I'm overlooking something really obvious here but I can't see it.
btnEight = new JButton( "8" );
// btnEight.addActionListener( controller );
btnEight.setBounds( 212, 90, 41, 23 );
frame.getContentPane().add( btnEight );
and then I add the listener
public void setController( ActionListener theController ) {
Component[] components = frame.getContentPane().getComponents();
for ( Component component : components ) {
if ( component instanceof JButton ) {
JButton button = ( JButton ) component;
button.addActionListener( theController );
}
}
again, when i click the button nothing happens. but if i add the following code
btnEight.doclick()
the actionPerformed invokes in theController as I intended.
You can see the entire project on GitHub so you can see the full context. The controller class contains the listener and the view class contains the buttons.
View Replies
View Related
Oct 21, 2014
I've recently decided to learn Java on my own using internet material such as forums, blogs and you tube. Ive never programed before but through some research I concluded that Java is going to be on the mid spectrum of difficulty as far as verbiage goes. I ma in no way implying that Java is easy but instead closer to spoken English that c++ if my research is correct. So here is my attempt at a basic program where I click a button and it will make an image appear. Not sure where Im falling short
package clicktoimage;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Clicktoimage extends JFrame {
private JLabel label;
private ImageIcon image;
[Code]...
View Replies
View Related
Mar 17, 2015
So this is my package structure:
Projectsrccom.mypackageMyClass.java
resourcesicon.pngmyexe.exe
Right now I have to run the exe like this : - It has hardcoded the path of the exe :command = "cmd /c start /b cmd.exe /K "cd " + outputFolderPath
+ " && C:myfoldermyexe.exe " + "param1=value1 param2=value2 " ;
Process p = Runtime.getRuntime().exec(command); This works fine. But, When I package it as a jar I want to give a relative path to my resources folder. How can I make this happen?
I tried:File f = new File("resources/myexe.exe");
String path = f.getAbsolutePath();
but this "path" did not work.
Another way would be to extract the exe to a local path on the server, but there is a possibility that I could face permission issues.
View Replies
View Related
Jun 19, 2014
I am trying to switch panel on click of a button but nothing is happening.
package game.uno.swings;
import java.awt.EventQueue;
import javax.swing.JFrame;
import java.awt.CardLayout;
import javax.swing.JPanel;
[Code] ....
I read the oracle doc example, i understand the concept but still nothing is happening on show,first ,next method of CardLayout in ActionPerformed. Code is highlighted where I am facing problem.
View Replies
View Related
Jun 20, 2014
Am trying to add buttons dynamically in a new Jpanel on click of a button. i am getting new Jpanel but not able to see the buttons.
btnNewButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if((!(playerFirst.getText().equalsIgnoreCase("") ||playerSecond.getText().equalsIgnoreCase(""))&&(!playerFirst.getText().equalsIgnoreCase(playerSecond.getText())) ) ){
//unoGameController.playGame(playerFirst.getText(), playerSecond.getText());
CardLayout cardLayout=(CardLayout)(frmUno.getContentPane().getLayout());
[Code]...
prepareHandsForGuiCode is
public UNODeckMain prepareHandsForGui(UNODeckMain unoDeckMain){
JButton[] btnArr =new JButton[50];
for(int i=0;i<50;i++){
btnArr[i]=new JButton("hi");
panel_player1.add(btnArr[i]);
}return unoDeckMain; }
Am i skipping something ?
View Replies
View Related
Mar 8, 2015
I'm trying to do a method which will draw a triangle and then the method will be called when we click on a specific button. How I must proceed.
View Replies
View Related
Sep 20, 2014
I don't get what I missed in the code. I used the example of changing the text of a button by clicking on it, but instead I also added a JLabel and tried to make the button change its text instead, but it didn't work. What did I do wrong?
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
class Buttone implements ActionListener{
JLabel label;
JButton button;
[Code] ....
View Replies
View Related
Oct 16, 2014
The gist of it is to create a very basic memory game. There are 12 buttons, each associated with an icon. Every button that you click will display the icon and will stay there until clicked again. I got the bulk of it taken care of, but my issue lies with switching the icons back and forth. I can get them to display one at a time, but when I click on a new button, all the icons except the button I just clicked don't display. Essentially, only one shows up at a time.
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.SwingConstants;
[code]....
View Replies
View Related
Sep 5, 2014
My program has a MainFrame(extends JFrame)class and BasePanel(extends JPanel) class,and many other panels.I had used Images with JLabel in BasePanel.My current panel in MainFrame is BasePanel.I had used MouseListener so that when I click on any of the label it should show Other panel in same MainFrame and hide the BasePanel.But I am getting some problem with that.When I click on the Label,It hides the BasePanel but do not show the new Panel(Dictionary Panel in my code). In short when label is clicked I want to make DictionaryPanel visible and BasePanel invisible,both in MainFrame. I am using the following code on Label:
//constructor of BasePanel class
public BasePanel() {
dict=new Dictionary();
mf=new MainFrame();
dictLabel.addMouseListener(new MouseListener() {
public void mouseReleased(MouseEvent arg0) {
[Code] ....
View Replies
View Related
Apr 20, 2014
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.text.*;
public class aaa extends JFrame
{
private JPanel combinationp, np, ap, dp, surgeryp, medicationp, infop; // input = name, address, days
private JLabel namelabel, addresslabel, dayslabel, infolabel;
private JTextField nametf, addresstf, daystf, selectedsurgerytf;
private JButton calcButton;
[Code] .....
View Replies
View Related
Nov 19, 2014
Okay so I have the codes all written but I didn't really look at that I had to color the center of the frame. I have base code for it but it just doesn't want t ocolor the cnter frame for me for some reason. I have been looking around and still am having problem with it only coloring the center of the frame.
Java Code:
import java.awt.event.*;
import javax.swing.*;
import java.awt.*;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
public class MenuColors {
[Code] ....
View Replies
View Related
Apr 20, 2014
I have a Panel in JFrame which consists of a TextField. I want this text field to be initially focused when GUI starts so that i should not have to first click in it before writing something.
I've tried:
textField.requestFocus();
textField.requestFocusInWindow();
textField.grabFocus();
but of no use. What should i use ?
View Replies
View Related
May 4, 2015
i have two classes, one is a GUI program and the other is an index writer program. the GUI program uses a j file chooser to select directories and display them in the text fields.the index writer is supposed to take the directories in the text fields and read from one(document location) and write into the other(index location) i want to run the index writer program by the click of a button(indexfbuton) in the gui programi have been able to get the directories to display in the text field but when i click the button to run the index writer class, nothing happens..here is the GUI class
package upload1;
import upload1.IndexFiles;
import java .awt.*;
import java.awt.event.*;
[code]....
View Replies
View Related
Apr 8, 2013
I have been trying to develop a small desktop application. I have JFrame and a button. When I click the button, the app is supposed to save record to database. But it is impossible to click the botton twice. To explain in detail: when a user fill in the form and click the button, the app will warn the user if he/she haven't fill in the appropriate JTextFields. After warning it is impossible to click the button again. I mean after first click, the button is busy and impossible to click.
import javax.swing.*;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.DriverManager;
[Code] ....
View Replies
View Related
Jun 24, 2014
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.event.KeyEvent;
public class Racquet {
private static final int WIDTH = 60;
private static final int HEIGHT = 20;
[code]....
The problem arises at the portion of the code that says
private int Y = game.getHeight() - 70;
I am not actually getting any compiler errors, but when I try to run the program, the command prompt pops up with this message:
Exception in thread "main" java.lang.NullPointerException
at Racquet.<init>(Racquet.java:19)
at Game.<init>(Game.java:10)
at Game.main(game.java:58)
What I want to do is make it so a GUI object that I created moves with the screen when I change the height. If I change it to private int Y = 330; the program works just fine.
View Replies
View Related
Jan 27, 2014
I have three classes.. 1. panel class 2. frame class and 3. tester class...I am creating the objects like so but when I add button to panel then panel to frame I am not seeing the button. here is my code
import javax.swing.JButton;
import javax.swing.JPanel;
public class Panel extends JPanel{
private JPanel p;
private JButton b;
[code]....
View Replies
View Related
Apr 3, 2014
Question: How can I add an Item to a combobox when I click a button?
View Replies
View Related
Apr 22, 2014
I am working on web project in java. i have taken buttons in column..and projects is my column..when i click on a button in first row ,i want fetch all information about selected project....so how can i do that?
View Replies
View Related
May 31, 2014
I have a textbox called "answer" and 10 different buttons on a form. Now what i would like to do is click the button and have the Button Text in the textbox with the already present text.
So if i click the button 1 it should automatically recognize the clicked button and have its text copied to textbox.
I know the '.get' method but lets say i have 100 buttons so i cant repeat it for every single one of them.
answer.setText(answer.getText() + ___________________);
View Replies
View Related
Jul 15, 2015
I'm using java FX-8 and JDK 1.8,Netbeans 8.0.2.I want to open pdf on button click in my JavaFXML Application.I have triued pdf viewer plugins and iText but it doesn;t work.I have to pass variable value in pdf too.
View Replies
View Related
Jan 27, 2014
What are a couple of examples to code a button that if it's clicked the panel's visibility is set to false?
View Replies
View Related
Apr 22, 2014
i want value of button on button click..and value should be display on next page?? how to do that???
View Replies
View Related
Apr 30, 2014
In my application, some text should be added to a text area in response to a click on a button. So as an action listener to this class, I made another class which implements the ActionListener.
Inside this class, I have obtained the text which I want to be added to the text area. But the text area is in another class and for the action listener I wrote another class.
Now the problem is that when I try to add the text to the text area by the following line of code, it says that textArea_1 can not be resolved or is not a field.
Java Code:
ParentPanel.textArea_1.setText("Name:"+ncrarray[0]+"
Code:"+ncrarray[1]+"
Rank:"+ncrarray[2]); mh_sh_highlight_all('java'); What should I do about it?
Even if I try to write a method like the following in the class in which the text area is created, it gives the same error.
Java Code:
public void printTextArea(String text) {
textArea_1.setText(text);
} mh_sh_highlight_all('java');
The text area is present inside a constructor of the class. I am writing the method outside the constructor (ofcourse).
View Replies
View Related