java buttons

java buttons

View Answers

October 12, 2009 at 3:23 PM

Hi Friend,

Try the following code:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class HideButton {
public static void main(String[] args) {
JFrame f = new JFrame("JFrame");
final JPanel p1 = new JPanel();
JButton a = new JButton("A");
JButton b = new JButton("B");
p1.add(a);
p1.add(b);
f.getContentPane().add(p1);

final JPanel p2 = (JPanel) f.getGlassPane();
p2.setVisible(true);
p2.setLayout(new GridBagLayout());
JButton c = new JButton("C");
p2.add(c);

f.setSize(150, 100);
f.setVisible(true);
c.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
p1.setVisible(false);
p1.repaint();
}
});
a.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(null,"Click Button B");
}
});
}
}

Hope that it will be helpful for you.
Thanks









Related Tutorials/Questions & Answers:
java buttons - Swing AWT
java buttons  There are 3 buttons in a window....A,B,C.If a user clicks button A ,a clue is given to him leading to button B.After the user clicks both A and B,he clicks C which is a submit button.After this both A and B should
Radio Buttons - Java Beginners
Radio Buttons  Hello Sir, How to create the code for the password recovery page(like forgot gmail password question and answer page)using the radion buttons in display the same page in jsp.I need only how to make the question
Advertisements
buttons in netbeans,java
buttons in netbeans,java  respected sir, i would like to known how to make coding on a button while working on netbeans, so that a new window will open after clicking on that button? thank you   import java.awt.
Buttons
Buttons  I have created a web page with radio button group with two radio buttons for accepting the home appliances categories,Kitchen appliances and other appliances.I want to check for the appliance chosen when the required
Multiple buttons in struts using java script
Multiple buttons in struts using java script  Multiple buttons in struts using java script
Hide buttons in Java Swing
Hide buttons in Java Swing In this section, you will learn how to hide buttons using java swing. For this, we have created three buttons, A, B and C. We have performed an action on C. When you click the button 'C', buttons A and B
how to display a table and buttons in swings - Java Beginners
how to display a table and buttons in swings  Hi frends, Actually... different buttons below this displayed table using swings.....please can any... the table and iam not getting buttons below the table......... Thanking you
Java App - Add, Delete, Reorder elements of the buttons
Java App - Add, Delete, Reorder elements of the buttons  Hello, I'm developing a Java application. I created this interface with MockupScreens... of these elements ... Let us put these buttons in a JPanel called btnsUnit
how to display a table and buttons in swings - Java Beginners
how to display a table and buttons in swings  Hi frends, Actually... different buttons below this displayed table using swings.....please can any... the table and iam not getting buttons below the table......... Thanking you
Java radio buttons and button groups two values
Java radio buttons and button groups two values  hi i have a problem. i have a system to input data from a jform to a mysql database. i have made all of it except the gender radiobuttons. how do i do this? i need when register
Java radio buttons and button groups two values
Java radio buttons and button groups two values  hi i have a problem. i have a system to input data from a jform to a mysql database. i have made all of it except the gender radiobuttons. how do i do this? i need when register
Multiple submit buttons in single xhtml form - Java Server Faces Questions
Multiple submit buttons in single xhtml form  Hi all, Here I am attaching the source of the page , which containig two submit buttons. Somebody suggested to keep eaxh button in different form. I am new to JSF, can anyone split
How can I Define a JFrame subclass that has four vertically positioned buttons. - Java Beginners
How can I Define a JFrame subclass that has four vertically positioned buttons... positioned buttons. The labels for the four buttons are Senior, Junior, Sophomore...; public DisplayButtons(){ JButton[] buttons = new JButton[4]; panel=new JPanel(new
radio buttons
radio buttons  write a program to create an applet button which has a list of radio buttons with titles of various colours.set the background colour... has a list of radio buttons with titles of various colors and a button
add Buttons in JavaScript
add Buttons in JavaScript  How to add Buttons in JavaScript
ModuleNotFoundError: No module named 'buttons'
ModuleNotFoundError: No module named 'buttons'  Hi, My Python... 'buttons' How to remove the ModuleNotFoundError: No module named 'buttons... to install padas library. You can install buttons python with following command
uinavigationcontroller add multiple buttons
uinavigationcontroller add multiple buttons  How to add multiple buttons to the UINavigationController
HTML custom buttons
HTML custom buttons  How can I make a form with custom buttons
3 RADIO BUTTONS
3 RADIO BUTTONS  3 RADIO BUTTONS USING ALSO ONE RADIO CLICKING HOW TO PROCESS OF NEXTPAGE
URL CODE OF BUTTONS
URL CODE OF BUTTONS   how to create a button tag, i need a details for creating a button tag with url code
labels,textfields,buttons
labels,textfields,buttons  how to set the labels,textfields,buttons at certain positions such that we can add them without layout managers? my program is to design a login page with image and these labels at exact positions
more Submit buttons in the same form
more Submit buttons in the same form  Can I have two or more Submit buttons in the same form
Handling multiple buttons in HTML Form
Handling multiple buttons in HTML Form  How to handle Handling multiple buttons in HTML Form
creating dynamic buttons in iphone
creating dynamic buttons in iphone  i Have a UIView and i wanted to create a multiple buttons to that should come on view load. It will be great if that can be removed after sometime or required time.   -(void
ModuleNotFoundError: No module named 'django-buttons'
ModuleNotFoundError: No module named 'django-buttons'  Hi, My... named 'django-buttons' How to remove the ModuleNotFoundError: No module named 'django-buttons' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'react-buttons'
ModuleNotFoundError: No module named 'react-buttons'  Hi, My... 'react-buttons' How to remove the ModuleNotFoundError: No module named 'react-buttons' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'django-buttons'
ModuleNotFoundError: No module named 'django-buttons'  Hi, My... named 'django-buttons' How to remove the ModuleNotFoundError: No module named 'django-buttons' error? Thanks   Hi, In your python
How to Create Animated Main Menu Application with Java Swnig Buttons - Java Beginners
How to Create Animated Main Menu Application with Java Swnig Buttons  Hello sir I want to display Main Menu after Log in i have created Log in Form but I want More attractive Animated Main Menu which includes Following
retrieve data from database in java swing form using prev n next buttons
retrieve data from database in java swing form using prev n next buttons  i have a database having columns id(int),path(text),width(int),height(int),avdRed(float),avgGreen(float),avgBlue(float) i have to retrieve all the fields
retrieve data from database in java swing form using prev n next buttons
retrieve data from database in java swing form using prev n next buttons  i have a database having columns id(int),path(text),width(int),height(int),avdRed(float),avgGreen(float),avgBlue(float) i have to retrieve all the fields
space between buttons iPhone SDK
space between buttons iPhone SDK  Hi, can any one please explain how... UIButton's and added them to my UIScrollView. But problem is that those buttons... buttons. Thanks
understanding buttons :JSP random no program
understanding buttons :JSP random no program  I hav java random no generator program but i need to implement it in JSP such that page generates... "no is greater" please help me to understand buttons .thank you java code for random
Radio Buttons in Jsp - JSP-Servlet
Radio Buttons in Jsp  Hi, i have a page in which there are lot of radio buttons [IMG]http://i38.tinypic.com/jzi6vc.jpg[/IMG] see the above picture for reference i have a String having values either "G" or "Y" or "R
Create Multiple Buttons
Create Multiple Buttons using Java Swing   ... buttons labeled with the letters from A to Z respectively. To display them, we have created an array of letters. Using this array, we have labeled the buttons
how to upload and download images using buttons in jsp?
how to upload and download images using buttons in jsp?  how to upload and download images using buttons in jsp
How can combine threads and buttons?
How can combine threads and buttons?  I would like to start an application, stop it and restart it again and stop etc. I tried the following code... TestActionEvent(); frame.setTitle("Two buttons
ModuleNotFoundError: No module named 'django-admin-action-buttons'
ModuleNotFoundError: No module named 'django-admin-action-buttons'  ...: No module named 'django-admin-action-buttons' How to remove the ModuleNotFoundError: No module named 'django-admin-action-buttons' error? Thanks
ModuleNotFoundError: No module named 'django-admin-action-buttons'
ModuleNotFoundError: No module named 'django-admin-action-buttons'  ...: No module named 'django-admin-action-buttons' How to remove the ModuleNotFoundError: No module named 'django-admin-action-buttons' error? Thanks
ModuleNotFoundError: No module named 'django-admin-action-buttons'
ModuleNotFoundError: No module named 'django-admin-action-buttons'  ...: No module named 'django-admin-action-buttons' How to remove the ModuleNotFoundError: No module named 'django-admin-action-buttons' error? Thanks
ModuleNotFoundError: No module named 'monocle_social_buttons'
ModuleNotFoundError: No module named 'monocle_social_buttons'  Hi...: No module named 'monocle_social_buttons' How to remove the ModuleNotFoundError: No module named 'monocle_social_buttons' error? Thanks   Hi
php form having 2 submit buttons
php form having 2 submit buttons  i have a php form and some text boxes.and 2 buttons"approve" and "disapprove". when i click on approve button the data from form should go in mysql database and mail should go to appropiate
Radio Buttons in DB Very Urgent - JSP-Servlet
Radio Buttons in DB Very Urgent  Respected Sir/Madam, I am R.Ragavendran.. I got your reply.. Thank you very much for the response. Now I am sending... in the database.Here I need Radio Buttons added dynamically for each Row. When I click
prog. using radio buttons for simple calculator
prog. using radio buttons for simple calculator  import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; class Calculator extends JFrame { private final Font BIGGER_FONT = new Font
prog. using radio buttons for simple calculator
prog. using radio buttons for simple calculator  import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; class Calculator extends JFrame { private final Font BIGGER_FONT = new Font
disable backward and forward buttons of the browsers - JSP-Interview Questions
disable backward and forward buttons of the browsers  Dear, Thanks for your last reply. I want if you help me to disable the backward of forward of the browser by program using javascript or java. Sometimes when i access
How to create dynamic buttons for adding products on a cart.
How to create dynamic buttons for adding products on a cart.  Hi. I have some problems creating a page to add items into a cart. The page loads dynamic products from a database, and i would like to know how to group this products
ModuleNotFoundError: No module named 'odoo10-addon-web-access-rule-buttons'
ModuleNotFoundError: No module named 'odoo10-addon-web-access-rule-buttons...: ModuleNotFoundError: No module named 'odoo10-addon-web-access-rule-buttons' How...-buttons' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'odoo11-addon-web-access-rule-buttons'
ModuleNotFoundError: No module named 'odoo11-addon-web-access-rule-buttons...: ModuleNotFoundError: No module named 'odoo11-addon-web-access-rule-buttons' How...-buttons' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'odoo9-addon-web-access-rule-buttons'
ModuleNotFoundError: No module named 'odoo9-addon-web-access-rule-buttons' ...: ModuleNotFoundError: No module named 'odoo9-addon-web-access-rule-buttons' How to remove...-buttons' error? Thanks   Hi, In your python environment you have
how to create directed line between two buttons when i clicked there
how to create directed line between two buttons when i clicked there  Hi I have to create a topology between 6 nodes. 6 nodes are created as 6 buttons and when i clicked in first button and then on second button a directed

Ads