code for hostel registration form in java
#1
Thumbs Up 

please send me a java sourse code on hostel registration form using gui components
Reply
#2

code for hostel registration form in java

import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class student extends Frame implements ActionListener
{String msg;
Button b1=new Button("save");
Label l11=new Label("Student details",Label.CENTER);
Label l1=new Label("Name:",Label.LEFT);
Label l2=new Label("age:",Label.LEFT);
Label l3=new Label("Sex(M/F):",Label.LEFT);
Label l4=new Label("Address:",Label.LEFT);
Label l5=new Label("Course:",Label.LEFT);
Label l6=new Label("Semester:",Label.LEFT);
Label l7=new Label("",Label.RIGHT);
TextField t1=new TextField();
Choice c1=new Choice();
CheckboxGroup cbg=new CheckboxGroup();
Checkbox ck1=new Checkbox("Male",false,cbg);
Checkbox ck2=new Checkbox("Female",false,cbg);
TextArea t2=new TextArea("",180,90,TextArea.SCROLLBARS_VERTICAL_ONLY);
Choice course=new Choice();
Choice sem=new Choice();
Choice age=new Choice();
public student()
{addWindowListener(new myWindowAdapter());
setBackground(Color.cyan);
setForeground(Color.black);
setLayout(null);
add(l11);
add(l1);
add(l2);
add(l3);
add(l4);
add(l5);
add(l6);
add(l7);
add(t1);
add(t2);
add(ck1);
add(ck2);
add(course);
add(sem);
add(age);
add(b1);
b1.addActionListener(this);
add(b1);
course.add("BSc c.s");
course.add("BSc maths");
course.add("BSc physics");
course.add("BA English");
course.add("BCOM");
sem.add("1");
sem.add("2");
sem.add("3");
sem.add("4");
sem.add("5");
sem.add("6");
age.add("17");
age.add("18");
age.add("19");
age.add("20");
age.add("21");
l1.setBounds(25,65,90,20);
l2.setBounds(25,90,90,20);
l3.setBounds(25,120,90,20);
l4.setBounds(25,185,90,20);
l5.setBounds(25,260,90,20);
l6.setBounds(25,290,90,20);
l7.setBounds(25,260,90,20);
l11.setBounds(10,40,280,20);
t1.setBounds(120,65,170,20);
t2.setBounds(120,185,170,60);
ck1.setBounds(120,120,50,20);
ck2.setBounds(170,120,60,20);
course.setBounds(120,260,100,20);
sem.setBounds(120,290,50,20);
age.setBounds(120,90,50,20);
b1.setBounds(120,350,50,30);
}
public void paint(Graphics g)
{g.drawString(msg,200,450);}
public void actionPerformed(ActionEvent ae)
{if(ae.getActionCommand().equals("save"))
{msg="Student details saved!";
setForeground(Color.red); }
}
public static void main(String g[])
{student stu=new student();
stu.setSize(new Dimension(500,500));
stu.setTitle("student registration");
stu.setVisible(true);
}
}
class myWindowAdapter extends WindowAdapter
{public void windowClosing(WindowEvent we)
{
System.exit(0);
}
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: download pdf of code hostel management using java, source code for registration page in java, java code for application form, user registration form code in java swing, hostel management system form design pdf, java code for registration form, java code for registration form using swing,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  simple java rmi chat application source code 2 18,975 20-07-2018, 12:08 PM
Last Post: Guest
  free download source code for online movie ticket booking in java 2 18,484 15-08-2017, 03:21 PM
Last Post: Morshed
  download tsc registration certificate 6 1,742 27-06-2017, 03:21 PM
Last Post: jaseela123d
  source code for rsa encryption and decryption in java 2 7,926 29-05-2017, 04:21 PM
Last Post: Meghna Jadhav
  source code for task scheduling using genetic algorithm using java 2 8,444 11-04-2017, 08:31 PM
Last Post: Guest
  dlw summer training application form 2016 17 5 2,025 10-02-2017, 04:41 PM
Last Post: Arun Kumar yadav
  how to login tsc portal to download registration certificate kenya 6 3,164 14-10-2016, 08:58 PM
Last Post: wilfredsimon
  empilweni nursing school application form for 2017 4 1,432 22-09-2016, 07:42 PM
Last Post: Guest
  cheque book request form state bank of bikaner jaipur 3 1,060 04-09-2016, 09:49 PM
Last Post: Guest
  source code for suspicious email detection in java Parvesh.2595 2 1,023 23-08-2016, 04:05 PM
Last Post: seminar report asees

Forum Jump: