SlideShare a Scribd company logo
1 of 6
JAVA source Code 
By Kapil Kr. Pandit
JAVA source Code 
import java.awt.*; 
import java.applet.*; 
public class applicationform extends Applet 
{ 
public void init() 
{ 
setBackground(Color.cyan); 
setForeground(Color.blue); 
setLayout(null); 
Label l=new Label("IIMT College of Engineering",Label.CENTER); 
l.setBounds(500,10,300,20); 
add(l); 
Label l1=new Label("Enter your Name",Label.LEFT); 
l1.setBounds(150,40,100,20); 
add(l1); 
TextField t=new TextField(); 
t.setBounds(300,40,200,20); 
add(t); 
Label l2=new Label("Gender",Label.LEFT); 
l2.setBounds(150,70,50,20); 
add(l2); 
CheckboxGroup cbg= new CheckboxGroup(); 
Checkbox cg1= new Checkbox("MALE",cbg,false); 
Checkbox cg2= new Checkbox("FEMALE",cbg,false); 
cg1.setBounds(300,70,50,20); 
add(cg1); 
cg2.setBounds(380,70,100,20); 
add(cg2); 
Label l3=new Label("Date of Birth:",Label.LEFT); 
l3.setBounds(150,100,100,20); 
add(l3); 
TextField t1=new TextField(); 
t1.setBounds(300,100,100,20); 
add(t1); 
Label l4=new Label("Place of Birth:",Label.LEFT); 
l4.setBounds(150,130,100,20); 
add(l4); 
TextField t2=new TextField(); 
By Kapil Kr. Pandit
JAVA source Code 
t2.setBounds(300,130,120,20); 
add(t2); 
Label l5=new Label("State:",Label.LEFT); 
l5.setBounds(195,160,100,20); 
add(l5); 
TextField t3=new TextField(); 
t3.setBounds(300,160,100,20); 
add(t3); 
Label l6=new Label("country:",Label.LEFT); 
l6.setBounds(450,160,70,20); 
add(l6); 
TextField t4=new TextField(); 
t4.setBounds(540,160,100,20); 
add(t4); 
Label l7=new Label("Mother Name:",Label.LEFT); 
l7.setBounds(150,190,100,20); 
add(l7); 
TextField t5=new TextField(); 
t5.setBounds(300,190,200,20); 
add(t5); 
Label l8=new Label("Father Name:",Label.LEFT); 
l8.setBounds(150,220,100,20); 
add(l8); 
TextField t6=new TextField(); 
t6.setBounds(300,220,200,20); 
add(t6); 
Label l9=new Label("Education Qualification:",Label.LEFT); 
l9.setBounds(150,250,200,20); 
add(l9); 
Checkbox c1=new Checkbox ("10th"); 
Checkbox c2=new Checkbox ("12th"); 
Checkbox c3=new Checkbox ("Graduate"); 
Checkbox c4=new Checkbox ("Post Graduate"); 
Checkbox c5=new Checkbox ("Doc."); 
Checkbox c6=new Checkbox ("Post Doc."); 
c1.setBounds(360,250,70,20); 
c2.setBounds(470,250,70,20); 
c3.setBounds(540,250,70,20); 
By Kapil Kr. Pandit
JAVA source Code 
c4.setBounds(360,280,100,20); 
c5.setBounds(470,280,50,20); 
c6.setBounds(540,280,100,20); 
add(c1); 
add(c2); 
add(c3); 
add(c4); 
add(c5); 
add(c6); 
Label l10=new Label("Mobile No.:"); 
l10.setBounds(150,310,100,20); 
add(l10); 
TextArea ta=new TextArea (); 
ta.setText("+91"); 
ta.setBounds(300,310,50,20); 
add(ta); 
ta.setEditable(false); 
TextField t7=new TextField(10); 
t7.setBounds(355,310,100,20); 
add(t7); 
Label l11=new Label("Write a Short Essay on any Topic:",Label.LEFT); 
l11.setBounds(150,340,200,20); 
add(l11); 
TextField t8=new TextField(); 
t8.setBounds(355,340,600,130); 
add(t8); 
Label l12=new Label("Choose Branch"); 
l12.setBounds(150,480,120,30); 
add(l12); 
Choice branch=new Choice(); 
branch.setBounds(300,480,100,30); 
add(branch); 
branch.add("CSE"); 
branch.add("IT"); 
branch.add("ME"); 
branch.add("EC"); 
branch.add("EI"); 
Label l13=new Label("Subject Taken"); 
By Kapil Kr. Pandit
JAVA source Code 
l13.setBounds(150,520,100,30); 
add(l13); 
List subject=new List(3,true); 
subject.setBounds(300,520,400,50); 
add(subject); 
subject.add("Operating System"); 
subject.add("Design and Analysis of Algorithms"); 
subject.add("Object Oriented Techniques"); 
subject.add("Computer Graphics"); 
subject.add("Graph Theory"); 
subject.add("Engg. Managerial Economics"); 
subject.add("..................................................................."); 
subject.add("Addition subjects"); 
subject.add("..................................................................."); 
subject.add("Computer Network"); 
subject.add("Software Engineering"); 
subject.add("Compiler Design"); 
Button b1=new Button("Submit"); 
Button b2=new Button("Cancel"); 
b1.setBounds(450,580,50,20); 
b2.setBounds(510,580,50,20); 
add(b1); 
add(b2); 
Label l14=new Label("Terms & Conditions:"); 
l14.setBounds(150,610,150,30); 
add(l14); 
TextArea ta1=new TextArea (2,4); 
ta1.setText("This is simple formncreate for IIMT college of Engg.nmade by KAPIL 
KUMAR"); 
ta1.setBounds(320,610,200,70); 
add(ta1); 
ta1.setEditable(false); 
CheckboxGroup cbg1= new CheckboxGroup(); 
Checkbox cg11= new Checkbox("Accept",cbg1,true); 
Checkbox cg21= new Checkbox("Decline",cbg1,false); 
cg11.setBounds(370,690,70,20); 
add(cg11); 
cg21.setBounds(450,690,70,20); 
By Kapil Kr. Pandit
JAVA source Code 
add(cg21); 
Button b3=new Button("Continue......"); 
b3.setBounds(550,700,100,30); 
add(b3); 
setVisible(true); 
} 
} 
/*<applet code="applicationform.class" width=1000 height=1000> 
</applet>*/ 
By Kapil Kr. Pandit

More Related Content

What's hot

Code sources des fonctions table cp
Code sources des fonctions table cpCode sources des fonctions table cp
Code sources des fonctions table cp
idhem110
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
kramsri
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
kramsri
 

What's hot (20)

Implementing virtual machines in go & c 2018 redux
Implementing virtual machines in go & c 2018 reduxImplementing virtual machines in go & c 2018 redux
Implementing virtual machines in go & c 2018 redux
 
Going Loopy: Adventures in Iteration with Go
Going Loopy: Adventures in Iteration with GoGoing Loopy: Adventures in Iteration with Go
Going Loopy: Adventures in Iteration with Go
 
Exploring slides
Exploring slidesExploring slides
Exploring slides
 
Ray tracing with ZIO-ZLayer
Ray tracing with ZIO-ZLayerRay tracing with ZIO-ZLayer
Ray tracing with ZIO-ZLayer
 
GECon2017_Cpp a monster that no one likes but that will outlast them all _Ya...
GECon2017_Cpp  a monster that no one likes but that will outlast them all _Ya...GECon2017_Cpp  a monster that no one likes but that will outlast them all _Ya...
GECon2017_Cpp a monster that no one likes but that will outlast them all _Ya...
 
GECon 2017: C++ - a Monster that no one likes but that will outlast them all
GECon 2017: C++ - a Monster that no one likes but that will outlast them allGECon 2017: C++ - a Monster that no one likes but that will outlast them all
GECon 2017: C++ - a Monster that no one likes but that will outlast them all
 
Going Loopy - Adventures in Iteration with Google Go
Going Loopy - Adventures in Iteration with Google GoGoing Loopy - Adventures in Iteration with Google Go
Going Loopy - Adventures in Iteration with Google Go
 
Code sources des fonctions table cp
Code sources des fonctions table cpCode sources des fonctions table cp
Code sources des fonctions table cp
 
Exploiting Memory Overflows
Exploiting Memory OverflowsExploiting Memory Overflows
Exploiting Memory Overflows
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
 
C programming array & shorting
C  programming array & shortingC  programming array & shorting
C programming array & shorting
 
Why The Free Monad isn't Free
Why The Free Monad isn't FreeWhy The Free Monad isn't Free
Why The Free Monad isn't Free
 
Collection Core Concept
Collection Core ConceptCollection Core Concept
Collection Core Concept
 
What's New In C# 7
What's New In C# 7What's New In C# 7
What's New In C# 7
 
C++ programs
C++ programsC++ programs
C++ programs
 
Simple swing programs
Simple swing programsSimple swing programs
Simple swing programs
 
All You Need is Fold in the Key of C#
All You Need is Fold in the Key of C#All You Need is Fold in the Key of C#
All You Need is Fold in the Key of C#
 
C sharp 8
C sharp 8C sharp 8
C sharp 8
 
C++ Programming - 4th Study
C++ Programming - 4th StudyC++ Programming - 4th Study
C++ Programming - 4th Study
 

Viewers also liked (7)

Codigo ejercicios
Codigo ejerciciosCodigo ejercicios
Codigo ejercicios
 
Proyecto tres en raya electrónico
Proyecto tres en raya electrónicoProyecto tres en raya electrónico
Proyecto tres en raya electrónico
 
Sintaxis Java
Sintaxis JavaSintaxis Java
Sintaxis Java
 
Curso Java Basico
Curso Java BasicoCurso Java Basico
Curso Java Basico
 
Proyecto tres en_raya_f_inal_mathias_y_grupo
Proyecto tres en_raya_f_inal_mathias_y_grupoProyecto tres en_raya_f_inal_mathias_y_grupo
Proyecto tres en_raya_f_inal_mathias_y_grupo
 
Clase 5 JAVA 2012
Clase 5 JAVA 2012Clase 5 JAVA 2012
Clase 5 JAVA 2012
 
Juego Tres En Raya
Juego Tres En RayaJuego Tres En Raya
Juego Tres En Raya
 

Similar to Application Form

Fee managment system
Fee managment systemFee managment system
Fee managment system
fairy9912
 
  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf
  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf
  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf
sudhirchourasia86
 
Lab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docx
Lab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docxLab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docx
Lab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docx
rennaknapp
 
Revision c odesagain
Revision c odesagainRevision c odesagain
Revision c odesagain
rex0721
 
Set up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdf
Set up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdfSet up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdf
Set up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdf
xlynettalampleyxc
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++
Arun Nair
 

Similar to Application Form (20)

Java File
Java FileJava File
Java File
 
Fee managment system
Fee managment systemFee managment system
Fee managment system
 
C program
C programC program
C program
 
  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf
  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf
  package Chapter_20;import ToolKit.PostfixNotation;import javaf.pdf
 
Programa expresiones regulares
Programa expresiones regularesPrograma expresiones regulares
Programa expresiones regulares
 
Pdr ppt
Pdr pptPdr ppt
Pdr ppt
 
Ss
SsSs
Ss
 
Advanced Java - Practical File
Advanced Java - Practical FileAdvanced Java - Practical File
Advanced Java - Practical File
 
JEEConf 2017 - Having fun with Javassist
JEEConf 2017 - Having fun with JavassistJEEConf 2017 - Having fun with Javassist
JEEConf 2017 - Having fun with Javassist
 
Lab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docx
Lab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docxLab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docx
Lab_3- Objective- Experiment with Lists- Stacks- and Queues- Simulate.docx
 
JavaOne 2015 - Having fun with Javassist
JavaOne 2015 - Having fun with JavassistJavaOne 2015 - Having fun with Javassist
JavaOne 2015 - Having fun with Javassist
 
662305 11
662305 11662305 11
662305 11
 
1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional
 
Calculator code with scientific functions in java
Calculator code with scientific functions in java Calculator code with scientific functions in java
Calculator code with scientific functions in java
 
Cbse marking scheme 2006 2011
Cbse marking scheme 2006  2011Cbse marking scheme 2006  2011
Cbse marking scheme 2006 2011
 
003 - JavaFX Tutorial - Layouts
003 - JavaFX Tutorial - Layouts003 - JavaFX Tutorial - Layouts
003 - JavaFX Tutorial - Layouts
 
Revision c odesagain
Revision c odesagainRevision c odesagain
Revision c odesagain
 
From Java to Kotlin beyond alt+shift+cmd+k - Kotlin Community Conf Milan
From Java to Kotlin beyond alt+shift+cmd+k - Kotlin Community Conf MilanFrom Java to Kotlin beyond alt+shift+cmd+k - Kotlin Community Conf Milan
From Java to Kotlin beyond alt+shift+cmd+k - Kotlin Community Conf Milan
 
Set up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdf
Set up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdfSet up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdf
Set up a JavaFX GUI-based program that shows a 10 times 10 grid of la.pdf
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++
 

Recently uploaded

如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证
ugzga
 
挂科办理天主教大学毕业证成绩单一模一样品质
挂科办理天主教大学毕业证成绩单一模一样品质挂科办理天主教大学毕业证成绩单一模一样品质
挂科办理天主教大学毕业证成绩单一模一样品质
yzeoq
 
NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...
NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...
NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...
Amil baba
 
Resume all my skills and educations and achievement
Resume all my skills and educations and  achievement Resume all my skills and educations and  achievement
Resume all my skills and educations and achievement
210303105569
 
Design-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora AgencyDesign-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora Agency
Isadora Agency
 
如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证
如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证
如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证
ugzga
 
如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证
ugzga
 
如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证
如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证
如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证
ugzga
 
如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证
ugzga
 
一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理
一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理
一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理
thubko
 
NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...
NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...
NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...
Amil baba
 

Recently uploaded (20)

And that's about to change! (Service Design Drinks Berlin May 2024)
And that's about to change! (Service Design Drinks Berlin May 2024)And that's about to change! (Service Design Drinks Berlin May 2024)
And that's about to change! (Service Design Drinks Berlin May 2024)
 
如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UAL毕业证书)伦敦艺术大学毕业证成绩单本科硕士学位证留信学历认证
 
GBU INDOOR STADIUM CASE STUDY DESCRIBING ITS STRUCTURE
GBU INDOOR STADIUM CASE STUDY DESCRIBING ITS STRUCTUREGBU INDOOR STADIUM CASE STUDY DESCRIBING ITS STRUCTURE
GBU INDOOR STADIUM CASE STUDY DESCRIBING ITS STRUCTURE
 
挂科办理天主教大学毕业证成绩单一模一样品质
挂科办理天主教大学毕业证成绩单一模一样品质挂科办理天主教大学毕业证成绩单一模一样品质
挂科办理天主教大学毕业证成绩单一模一样品质
 
NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...
NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...
NO1 Best Vashikaran Specialist in Uk Black Magic Specialist in Uk Black Magic...
 
Top 10 Website Designing Hacks for Beginners.pptx.pptx
Top 10 Website Designing Hacks for Beginners.pptx.pptxTop 10 Website Designing Hacks for Beginners.pptx.pptx
Top 10 Website Designing Hacks for Beginners.pptx.pptx
 
Resume all my skills and educations and achievement
Resume all my skills and educations and  achievement Resume all my skills and educations and  achievement
Resume all my skills and educations and achievement
 
Branding in the Psychedelic Landscape Report.pdf
Branding in the Psychedelic Landscape Report.pdfBranding in the Psychedelic Landscape Report.pdf
Branding in the Psychedelic Landscape Report.pdf
 
Design-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora AgencyDesign-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora Agency
 
如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证
如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证
如何办理(UB毕业证书)纽约州立大学水牛城分校毕业证成绩单本科硕士学位证留信学历认证
 
Levi's Advertisement and camapign design
Levi's Advertisement and camapign designLevi's Advertisement and camapign design
Levi's Advertisement and camapign design
 
如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(Bath毕业证书)巴斯大学毕业证成绩单本科硕士学位证留信学历认证
 
如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证
如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证
如何办理(UCL毕业证书)伦敦大学学院毕业证成绩单本科硕士学位证留信学历认证
 
如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证
如何办理(UMN毕业证书)明尼苏达大学毕业证成绩单本科硕士学位证留信学历认证
 
一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理
一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理
一模一样英国德比大学毕业证(derby毕业证书)本科学历-国外大学文凭办理
 
Spring Summer 26 Colors Trend Book Peclers Paris
Spring Summer 26 Colors Trend Book Peclers ParisSpring Summer 26 Colors Trend Book Peclers Paris
Spring Summer 26 Colors Trend Book Peclers Paris
 
Morgenbooster: Storytelling in Identity Design
Morgenbooster: Storytelling in Identity DesignMorgenbooster: Storytelling in Identity Design
Morgenbooster: Storytelling in Identity Design
 
NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...
NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...
NO1 Best Kala Jadu Expert Specialist In Qatar Kala Jadu Expert Specialist In ...
 
Naer VR: Advanced Research and Usability Testing Project
Naer VR: Advanced Research and Usability Testing ProjectNaer VR: Advanced Research and Usability Testing Project
Naer VR: Advanced Research and Usability Testing Project
 
Rise of Digital Textiles__Published in PrintAction
Rise of Digital Textiles__Published in PrintActionRise of Digital Textiles__Published in PrintAction
Rise of Digital Textiles__Published in PrintAction
 

Application Form

  • 1. JAVA source Code By Kapil Kr. Pandit
  • 2. JAVA source Code import java.awt.*; import java.applet.*; public class applicationform extends Applet { public void init() { setBackground(Color.cyan); setForeground(Color.blue); setLayout(null); Label l=new Label("IIMT College of Engineering",Label.CENTER); l.setBounds(500,10,300,20); add(l); Label l1=new Label("Enter your Name",Label.LEFT); l1.setBounds(150,40,100,20); add(l1); TextField t=new TextField(); t.setBounds(300,40,200,20); add(t); Label l2=new Label("Gender",Label.LEFT); l2.setBounds(150,70,50,20); add(l2); CheckboxGroup cbg= new CheckboxGroup(); Checkbox cg1= new Checkbox("MALE",cbg,false); Checkbox cg2= new Checkbox("FEMALE",cbg,false); cg1.setBounds(300,70,50,20); add(cg1); cg2.setBounds(380,70,100,20); add(cg2); Label l3=new Label("Date of Birth:",Label.LEFT); l3.setBounds(150,100,100,20); add(l3); TextField t1=new TextField(); t1.setBounds(300,100,100,20); add(t1); Label l4=new Label("Place of Birth:",Label.LEFT); l4.setBounds(150,130,100,20); add(l4); TextField t2=new TextField(); By Kapil Kr. Pandit
  • 3. JAVA source Code t2.setBounds(300,130,120,20); add(t2); Label l5=new Label("State:",Label.LEFT); l5.setBounds(195,160,100,20); add(l5); TextField t3=new TextField(); t3.setBounds(300,160,100,20); add(t3); Label l6=new Label("country:",Label.LEFT); l6.setBounds(450,160,70,20); add(l6); TextField t4=new TextField(); t4.setBounds(540,160,100,20); add(t4); Label l7=new Label("Mother Name:",Label.LEFT); l7.setBounds(150,190,100,20); add(l7); TextField t5=new TextField(); t5.setBounds(300,190,200,20); add(t5); Label l8=new Label("Father Name:",Label.LEFT); l8.setBounds(150,220,100,20); add(l8); TextField t6=new TextField(); t6.setBounds(300,220,200,20); add(t6); Label l9=new Label("Education Qualification:",Label.LEFT); l9.setBounds(150,250,200,20); add(l9); Checkbox c1=new Checkbox ("10th"); Checkbox c2=new Checkbox ("12th"); Checkbox c3=new Checkbox ("Graduate"); Checkbox c4=new Checkbox ("Post Graduate"); Checkbox c5=new Checkbox ("Doc."); Checkbox c6=new Checkbox ("Post Doc."); c1.setBounds(360,250,70,20); c2.setBounds(470,250,70,20); c3.setBounds(540,250,70,20); By Kapil Kr. Pandit
  • 4. JAVA source Code c4.setBounds(360,280,100,20); c5.setBounds(470,280,50,20); c6.setBounds(540,280,100,20); add(c1); add(c2); add(c3); add(c4); add(c5); add(c6); Label l10=new Label("Mobile No.:"); l10.setBounds(150,310,100,20); add(l10); TextArea ta=new TextArea (); ta.setText("+91"); ta.setBounds(300,310,50,20); add(ta); ta.setEditable(false); TextField t7=new TextField(10); t7.setBounds(355,310,100,20); add(t7); Label l11=new Label("Write a Short Essay on any Topic:",Label.LEFT); l11.setBounds(150,340,200,20); add(l11); TextField t8=new TextField(); t8.setBounds(355,340,600,130); add(t8); Label l12=new Label("Choose Branch"); l12.setBounds(150,480,120,30); add(l12); Choice branch=new Choice(); branch.setBounds(300,480,100,30); add(branch); branch.add("CSE"); branch.add("IT"); branch.add("ME"); branch.add("EC"); branch.add("EI"); Label l13=new Label("Subject Taken"); By Kapil Kr. Pandit
  • 5. JAVA source Code l13.setBounds(150,520,100,30); add(l13); List subject=new List(3,true); subject.setBounds(300,520,400,50); add(subject); subject.add("Operating System"); subject.add("Design and Analysis of Algorithms"); subject.add("Object Oriented Techniques"); subject.add("Computer Graphics"); subject.add("Graph Theory"); subject.add("Engg. Managerial Economics"); subject.add("..................................................................."); subject.add("Addition subjects"); subject.add("..................................................................."); subject.add("Computer Network"); subject.add("Software Engineering"); subject.add("Compiler Design"); Button b1=new Button("Submit"); Button b2=new Button("Cancel"); b1.setBounds(450,580,50,20); b2.setBounds(510,580,50,20); add(b1); add(b2); Label l14=new Label("Terms & Conditions:"); l14.setBounds(150,610,150,30); add(l14); TextArea ta1=new TextArea (2,4); ta1.setText("This is simple formncreate for IIMT college of Engg.nmade by KAPIL KUMAR"); ta1.setBounds(320,610,200,70); add(ta1); ta1.setEditable(false); CheckboxGroup cbg1= new CheckboxGroup(); Checkbox cg11= new Checkbox("Accept",cbg1,true); Checkbox cg21= new Checkbox("Decline",cbg1,false); cg11.setBounds(370,690,70,20); add(cg11); cg21.setBounds(450,690,70,20); By Kapil Kr. Pandit
  • 6. JAVA source Code add(cg21); Button b3=new Button("Continue......"); b3.setBounds(550,700,100,30); add(b3); setVisible(true); } } /*<applet code="applicationform.class" width=1000 height=1000> </applet>*/ By Kapil Kr. Pandit