Sunday, May 26, 2013

Simple Event Program In Java

/*EVENT PROGRAM IN JAVA*/

import java.lang.*;
import java.awt.*;
import java.awt.event.*;

class aaa extends Frame implements ActionListener
 {

     Button b1,b2,b3,b4,b5,b6;
     Label a,b,c,d,r,t;
     TextField a1,a2,a3,a4,a5,a6,a7;
       int a1;

           public aaa()
{
   b1=new Button("SUBMIT:");
   b2=new Button("RESET:");
   b3=new Button("EXIT:");
   b4=new Button("TOTAL:");
   b5=new Button("NEW:");
   b6=new Button("OLD:");

   a=new Label("NAME:");
   b=new Label("AGE:");
   c=new Label("GENDER:");
   d=new Label("EMAIL_ID:");
   r=new Label("MOBILE NUMBER:");
   t=new Label("NATIONALITY:");

   a1=new TextField(20);
   a2=new TextField(20);
   a3=new TextField(20);
   a4=new TextField(20);
   a5=new TextField(20);
   a6=new TextField(20);
   a7=new TextField(20);

    setLayout(new FlowLayout());
                  add(b5);  add(b6);
   
                   

                b1.addActionListener(this);
                b2.addActionListener(this);
   b3.addActionListener(this);
   b4.addActionListener(this);
   b5.addActionListener(this);
   b6.addActionListener(this);

          }

public aaa(int a1)
{
                 if(a1==0)
          {
            setLayout(new FlowLayout());
                           add(a);  add(b);  add(c);  add(d);  add(r);  add(t);
               add(b1);  add(b2);  add(b3);
          }
 }

          public void actionPerformed(ActionEvent ae)
{
  if(ae.getSource()==b5)
     {
        aaa(0);
     }

   if(ae.getSource()==b6)
      {
       
      setLayout(new FlowLayout());
            add(a);  add(b);  add(c);  add(d);  add(r);  add(t);
               add(b1);  add(b2);  add(b3);  add(b4);
       }
             
                  if(ae.getSource()==b3)
       {
                         System.exit(0);
       }
             

            }

public static void main(String args[])throws Exception
 {

aaa g=new aaa();

                       g.setSize(300,600);

          g.setVisible(true);

             }

      }

       
 

No comments:

Post a Comment

MS SQL : How to identify fragmentation in your indexes?

Almost all of us know what fragmentation in SQL indexes are and how it can affect the performance. For those who are new Index fragmentation...