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

怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
eeanqy
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
nirzagarg
 
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
drmarathore
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion pills in Kuwait Cytotec pills in Kuwait
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
nirzagarg
 
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
CristineGraceAcuyan
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
wpkuukw
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
awasv46j
 
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
gajnagarg
 
Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
balqisyamutia
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
wpkuukw
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
gajnagarg
 
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
eqaqen
 

Recently uploaded (20)

怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
 
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
 
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
 
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
 
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
 
Call Girls Jalaun Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Jalaun Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Jalaun Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Jalaun Just Call 8617370543 Top Class Call Girl Service Available
 
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best ServiceHigh Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
 
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime PondicherryPondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
 
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEKLANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
 
Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
 
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
 
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
Abortion pills in Riyadh +966572737505 <> buy cytotec <> unwanted kit Saudi A...
 
Mohanlalganj ! Call Girls in Lucknow - 450+ Call Girl Cash Payment 9548273370...
Mohanlalganj ! Call Girls in Lucknow - 450+ Call Girl Cash Payment 9548273370...Mohanlalganj ! Call Girls in Lucknow - 450+ Call Girl Cash Payment 9548273370...
Mohanlalganj ! Call Girls in Lucknow - 450+ Call Girl Cash Payment 9548273370...
 

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