Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions? | Software Development
 

How to create CheckBox On frame

This is very simple java program. In this section, you will learn how to create CheckBox on the frame.

How to create CheckBox On frame

                         

This is very simple java program. In this section, you will learn how to create CheckBox on the frame. In the Java AWT, top-level windows are represented by the CheckBox class. This program provides you complete illustration with the full description. If you are fresher in java awt programming then you can learn in very efficient manner.

In this section, you will see how to create and show the checkbox component on the frame. Here, explanation for the procedure of inserting checkboxes on the Java AWT Frame. You can understand very easily by trying the given complete code of the program.

Program Description:

There is class named CheckBox is used in the program for creating a checkbox component. This class is explained as follows:

CheckBox(): This is the constructors for CheckBox class used for creating checkbox. The constructor is taking here a String type parameter that is the label of checkbox.

Here is the code of this program:

import java.awt.*;
import java.awt.event.*;
public class CheckBoxDemo{
  public static void main(String[] args){
    Frame frame= new Frame("Checkbox");
    Checkbox check=new Checkbox("Welcome");
    Checkbox check1=new Checkbox("Roseindia");
    frame.add(check);
    frame.add(check1);
    frame.setLayout(new FlowLayout());
    frame.setSize(300,200);
    frame.setVisible(true);
    frame.addWindowListener(new WindowAdapter(){
      public void windowClosing(WindowEvent e){
        System.exit(0);
      }
    });
  }
}

Output for the above program:

    

Download this example.

                         

» View all related tutorials
Related Tags: c method color value line set while values to draw raw ast fixed e il last li hang use first

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
 
Tell A Friend
Your Friend Name

 

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.