SlideShare a Scribd company logo
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

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
Eleanor McHugh
 
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
Eleanor McHugh
 
Exploring slides
Exploring slidesExploring slides
Exploring slides
akaptur
 
Ray tracing with ZIO-ZLayer
Ray tracing with ZIO-ZLayerRay tracing with ZIO-ZLayer
Ray tracing with ZIO-ZLayer
Pierangelo Cecchetto
 
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_Org Team
 
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
Yauheni Akhotnikau
 
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
Eleanor McHugh
 
Code sources des fonctions table cp
Code sources des fonctions table cpCode sources des fonctions table cp
Code sources des fonctions table cp
idhem110
 
Exploiting Memory Overflows
Exploiting Memory OverflowsExploiting Memory Overflows
Exploiting Memory Overflows
Ankur Tyagi
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
kramsri
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
kramsri
 
C programming array & shorting
C  programming array & shortingC  programming array & shorting
C programming array & shorting
argusacademy
 
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
Kelley Robinson
 
Collection Core Concept
Collection Core ConceptCollection Core Concept
Collection Core Concept
Rays Technologies
 
What's New In C# 7
What's New In C# 7What's New In C# 7
What's New In C# 7
Paulo Morgado
 
C++ programs
C++ programsC++ programs
C++ programs
Mukund Gandrakota
 
Simple swing programs
Simple swing programsSimple swing programs
Simple swing programs
vishal choudhary
 
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#
Mike Harris
 
C sharp 8
C sharp 8C sharp 8
C sharp 8
Germán Küber
 
C++ Programming - 4th Study
C++ Programming - 4th StudyC++ Programming - 4th Study
C++ Programming - 4th Study
Chris Ohk
 

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

Codigo ejercicios
Codigo ejerciciosCodigo ejercicios
Codigo ejercicios
luis_umg2011
 
Proyecto tres en raya electrónico
Proyecto tres en raya electrónicoProyecto tres en raya electrónico
Proyecto tres en raya electrónico
mtcarda
 
Sintaxis Java
Sintaxis JavaSintaxis Java
Sintaxis Java
Daniel Alvarez
 
Curso Java Basico
Curso Java BasicoCurso Java Basico
Curso Java Basico
Formacion Campoamor
 
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
Robertho Mathias
 
Clase 5 JAVA 2012
Clase 5 JAVA 2012Clase 5 JAVA 2012
Clase 5 JAVA 2012
José Braganza
 
Juego Tres En Raya
Juego Tres En RayaJuego Tres En Raya
Juego Tres En Raya
kruskaya salazar
 

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

Java File
Java FileJava File
Java File
Archita Misra
 
Fee managment system
Fee managment systemFee managment system
Fee managment system
fairy9912
 
C program
C programC program
C program
Komal Singh
 
  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
 
Programa expresiones regulares
Programa expresiones regularesPrograma expresiones regulares
Programa expresiones regulares
Anel Sosa
 
Pdr ppt
Pdr pptPdr ppt
Pdr ppt
sid1232086
 
Ss
SsSs
Advanced Java - Practical File
Advanced Java - Practical FileAdvanced Java - Practical File
Advanced Java - Practical File
Fahad Shaikh
 
JEEConf 2017 - Having fun with Javassist
JEEConf 2017 - Having fun with JavassistJEEConf 2017 - Having fun with Javassist
JEEConf 2017 - Having fun with Javassist
Anton Arhipov
 
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
 
JavaOne 2015 - Having fun with Javassist
JavaOne 2015 - Having fun with JavassistJavaOne 2015 - Having fun with Javassist
JavaOne 2015 - Having fun with Javassist
Anton Arhipov
 
662305 11
662305 11662305 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
Isabella789
 
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
Amna Nawazish
 
Cbse marking scheme 2006 2011
Cbse marking scheme 2006  2011Cbse marking scheme 2006  2011
Cbse marking scheme 2006 2011
Praveen M Jigajinni
 
003 - JavaFX Tutorial - Layouts
003 - JavaFX Tutorial - Layouts003 - JavaFX Tutorial - Layouts
003 - JavaFX Tutorial - Layouts
Mohammad Hossein Rimaz
 
Revision c odesagain
Revision c odesagainRevision c odesagain
Revision c odesagain
rex0721
 
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
Fabio Collini
 
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

Heuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdfHeuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdf
Jaime Brown
 
Design Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinkingDesign Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinking
cy0krjxt
 
Impact of Fonts: in Web and Apps Design
Impact of Fonts:  in Web and Apps DesignImpact of Fonts:  in Web and Apps Design
Impact of Fonts: in Web and Apps Design
contactproperweb2014
 
20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf
ameli25062005
 
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With DesignsGame Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
184804
 
Timeless Principles of Good Design
Timeless Principles of Good DesignTimeless Principles of Good Design
Timeless Principles of Good Design
Carolina de Bartolo
 
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
GOWSIKRAJA PALANISAMY
 
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
jyz59f4j
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
Techno Merch
 
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
7sd8fier
 
ARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdfARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdf
Knight Moves
 
Mohannad Abdullah portfolio _ V2 _22-24
Mohannad Abdullah  portfolio _ V2 _22-24Mohannad Abdullah  portfolio _ V2 _22-24
Mohannad Abdullah portfolio _ V2 _22-24
M. A. Architect
 
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptxUNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
GOWSIKRAJA PALANISAMY
 
Graphic Design Tools and Software .pptx
Graphic Design Tools and Software   .pptxGraphic Design Tools and Software   .pptx
Graphic Design Tools and Software .pptx
Virtual Real Design
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
jhonguerrerobarturen
 
PDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in NoidaPDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in Noida
PoojaSaini954651
 
Portfolio.pdf
Portfolio.pdfPortfolio.pdf
Portfolio.pdf
garcese
 
Connect Conference 2022: Passive House - Economic and Environmental Solution...
Connect Conference 2022: Passive House -  Economic and Environmental Solution...Connect Conference 2022: Passive House -  Economic and Environmental Solution...
Connect Conference 2022: Passive House - Economic and Environmental Solution...
TE Studio
 
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
talaatahm
 
定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样
qo1as76n
 

Recently uploaded (20)

Heuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdfHeuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdf
 
Design Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinkingDesign Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinking
 
Impact of Fonts: in Web and Apps Design
Impact of Fonts:  in Web and Apps DesignImpact of Fonts:  in Web and Apps Design
Impact of Fonts: in Web and Apps Design
 
20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf
 
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With DesignsGame Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
 
Timeless Principles of Good Design
Timeless Principles of Good DesignTimeless Principles of Good Design
Timeless Principles of Good Design
 
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
 
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
 
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
 
ARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdfARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdf
 
Mohannad Abdullah portfolio _ V2 _22-24
Mohannad Abdullah  portfolio _ V2 _22-24Mohannad Abdullah  portfolio _ V2 _22-24
Mohannad Abdullah portfolio _ V2 _22-24
 
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptxUNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
 
Graphic Design Tools and Software .pptx
Graphic Design Tools and Software   .pptxGraphic Design Tools and Software   .pptx
Graphic Design Tools and Software .pptx
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
 
PDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in NoidaPDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in Noida
 
Portfolio.pdf
Portfolio.pdfPortfolio.pdf
Portfolio.pdf
 
Connect Conference 2022: Passive House - Economic and Environmental Solution...
Connect Conference 2022: Passive House -  Economic and Environmental Solution...Connect Conference 2022: Passive House -  Economic and Environmental Solution...
Connect Conference 2022: Passive House - Economic and Environmental Solution...
 
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
 
定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样
 

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