SlideShare uma empresa Scribd logo
1 de 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

Mais conteúdo relacionado

Mais procurados

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 reduxEleanor 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 GoEleanor McHugh
 
Exploring slides
Exploring slidesExploring slides
Exploring slidesakaptur
 
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 allYauheni 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 GoEleanor McHugh
 
Code sources des fonctions table cp
Code sources des fonctions table cpCode sources des fonctions table cp
Code sources des fonctions table cpidhem110
 
Exploiting Memory Overflows
Exploiting Memory OverflowsExploiting Memory Overflows
Exploiting Memory OverflowsAnkur Tyagi
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซีkramsri
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซีkramsri
 
C programming array & shorting
C  programming array & shortingC  programming array & shorting
C programming array & shortingargusacademy
 
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 FreeKelley Robinson
 
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++ Programming - 4th Study
C++ Programming - 4th StudyC++ Programming - 4th Study
C++ Programming - 4th StudyChris Ohk
 

Mais procurados (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
 

Destaque

Proyecto tres en raya electrónico
Proyecto tres en raya electrónicoProyecto tres en raya electrónico
Proyecto tres en raya electrónicomtcarda
 
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_grupoRobertho Mathias
 

Destaque (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
 

Semelhante a Application Form

Fee managment system
Fee managment systemFee managment system
Fee managment systemfairy9912
 
  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.pdfsudhirchourasia86
 
Programa expresiones regulares
Programa expresiones regularesPrograma expresiones regulares
Programa expresiones regularesAnel Sosa
 
Advanced Java - Practical File
Advanced Java - Practical FileAdvanced Java - Practical File
Advanced Java - Practical FileFahad Shaikh
 
JEEConf 2017 - Having fun with Javassist
JEEConf 2017 - Having fun with JavassistJEEConf 2017 - Having fun with Javassist
JEEConf 2017 - Having fun with JavassistAnton 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.docxrennaknapp
 
JavaOne 2015 - Having fun with Javassist
JavaOne 2015 - Having fun with JavassistJavaOne 2015 - Having fun with Javassist
JavaOne 2015 - Having fun with JavassistAnton Arhipov
 
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 professionalIsabella789
 
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
 
Revision c odesagain
Revision c odesagainRevision c odesagain
Revision c odesagainrex0721
 
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 MilanFabio 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.pdfxlynettalampleyxc
 
basic programs in C++
basic programs in C++ basic programs in C++
basic programs in C++ Arun Nair
 

Semelhante a 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++
 

Último

NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...Amil baba
 
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 Pondicherrymeghakumariji156
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxtrose8
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...instagramfab782445
 
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipRaebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipNitya salvi
 
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
 
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证ehyxf
 
Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahimamgadibrahim92
 
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...ZurliaSoop
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证wpkuukw
 
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证eeanqy
 
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
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Websitemark11275
 
Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...Nitya salvi
 
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...gajnagarg
 
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEKLANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEKMarekMitek1
 
Design-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora AgencyDesign-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora AgencyIsadora Agency
 
怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证
怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证
怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证eeanqy
 
Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxbalqisyamutia
 
The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024Ilham Brata
 

Último (20)

NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
 
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
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptx
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
 
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipRaebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
 
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...
 
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
 
Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahim
 
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
 
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
 
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
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Ratnagiri Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
 
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
 
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEKLANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
LANDSCAPE ARCHITECTURE PORTFOLIO - MAREK MITACEK
 
Design-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora AgencyDesign-System - FinTech - Isadora Agency
Design-System - FinTech - Isadora Agency
 
怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证
怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证
怎样办理伦敦国王学院毕业证(KCL毕业证书)成绩单留信认证
 
Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptx
 
The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024
 

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