Skip to main content

Applet Program to create frame in java

import java.applet.*;
import java.awt.event.*;
import java.awt.*;
/*<applet code="frm" height=300 width=700> </applet>*/
public class frm extends Applet //implements ItemListener
{

public void init()
{
Label l1=new Label("NAME");
Label l2=new Label("PASSWORD");
Label l3=new Label("QUALIFICATION");
Label l4=new Label("E-MAIL");
Label l5=new Label("GENDER");

TextField t1=new TextField();
TextField t2=new TextField();
TextField t3=new TextField();
TextField t4=new TextField();


CheckboxGroup cbg= new CheckboxGroup();
Checkbox cb1=new Checkbox("Male",cbg,true);
Checkbox cb2=new Checkbox("Female",cbg,false);

l1.setBounds(20,45,70,20);
t1.setBounds(200,45,200,20);

l2.setBounds(20,65,70,20);
t2.setBounds(200,65,200,20);

l3.setBounds(20,85,70,20);
t3.setBounds(200,85,200,20);

l4.setBounds(20,105,70,20);
t4.setBounds(200,105,200,20);

l5.setBounds(20,125,70,20);
cb1.setBounds(200,125,20,20);
cb2.setBounds(220,125,20,20);

add(l1);
add(t1);

add(l2);
add(t2);

add(l3);
add(t3);

add(l4);
add(t4);

add(l5);
add(cb1);

add(cb2);




add(new Button("Submit"));

}
}

Comments

Popular posts from this blog

unix commands