Design of java form

Design of java form

sir can u plz help me i want to design a interactive java form mins some thing diffrent in form is it possible in java if yes then help me

thank u

View Answers

December 22, 2010 at 5:30 PM

Hi Friend,

Yes, you can using java swing.

Try this:

import javax.swing.*;
import java.awt.*;
import java.sql.*;
import java.awt.event.*;
class CreateAccount extends JFrame{
JTextField text1,text2,text3,text4,text5;
JPasswordField pass1;
JLabel label1,label2,label3,label4,label5,label6;
JButton button,button1;
CreateAccount() {
    setLayout(null);
text1=new JTextField(15);
text2=new JTextField(15);
text3=new JTextField(15);
pass1=new JPasswordField(15);
text4=new JTextField(15);
text5=new JTextField(15);
label1=new JLabel("First Name");
label2=new JLabel("Last Name");
label3=new JLabel("User Name");
label4=new JLabel("Password");
label5=new JLabel("Address");
label6=new JLabel("Phone No");
button=new JButton("Save");
button1=new JButton("Exit");

label1.setBounds(350,100,100,20);
text1.setBounds(450,100,200,20);
label2.setBounds(350,130,100,20);
text2.setBounds(450,130,200,20);
label3.setBounds(350,160,100,20);
text3.setBounds(450,160,200,20);
label4.setBounds(350,190,100,20);
pass1.setBounds(450,190,200,20);
label5.setBounds(350,220,100,20);
text4.setBounds(450,220,200,20);
label6.setBounds(350,250,100,20);
text5.setBounds(450,250,200,20);
button.setBounds(350,280,100,20);
button1.setBounds(450,280,100,20);

add(label1);
add(text1);
add(label2);
add(text2);
add(label3);
add(text3);
add(label4);
add(pass1);
add(label5);
add(text4);
add(label6);
add(text5);
add(button);
add(button1);
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
String value1=text1.getText();
String value2=text2.getText();
String value3=text3.getText();
String value4=pass1.getText();
String value5=text4.getText();
String value6=text5.getText();

Connection con = null;
String url = "jdbc:mysql://localhost:3306/";;
String db = "test";
String driver = "com.mysql.jdbc.Driver";
String user = "root";
String pass = "root";
String user1="";
String pass1="";
try{
Class.forName(driver);
con = DriverManager.getConnection(url+db, user, pass);
Statement st = con.createStatement();
int i=st.executeUpdate("insert into login(firstname,lastname,username,password,address,contactno) values('"+value1+"','"+value2+"','"+value3+"','"+value4+"','"+value5+"','"+value6+"')");
JOptionPane.showMessageDialog(null,"Data is successfully saved.");
}
catch(Exception e){}
}
});
button1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
setVisible(false);
}
});
setSize(1024,768);
setVisible(true);
}
public static void main(String args[]){
    new CreateAccount();
}

}

Thanks









Related Tutorials/Questions & Answers:
How to design a form using java?
How to design a form using java?  Please help in designing of form using java for my project
Design of java form
Design of java form  sir can u plz help me i want to design a interactive java form mins some thing diffrent in form is it possible in java if yes then help me thank u   Hi Friend, Yes, you can using java swing
Advertisements
java design
java design  What is design by contract
java - Design concepts & design patterns
java  give the code to design the hotel management software
Java - Design concepts & design patterns
Java  What are design patterens?  Hi friend, Software professionals may be familiar with the term "Design Patterns," but many have... not see the value and benefits design patterns bring to the software development
Java - Design concepts & design patterns
Java  Sir , please let me know the exact usage of DAO design pattern  Hi Friend, Please visit the following link: http://www.roseindia.net/javatutorials/J2EE_singleton_pattern.shtml Thanks
java - Design concepts & design patterns
java  Q What is the disadvantage of Singleton design pattern?  Hi Friend, 1)It allows only one instance of the class. 2)If the Singleton has synchronized blocks in it, it might slow the system down as the threads
java - Design concepts & design patterns
java  design a java interface for ADT stack.develop two differant classes that implement this interface,one using array and the other using using linked list.provide necessary exception handling in both the implementations. 
java - Design concepts & design patterns
java  1.write a multi-threaded java program to print all numbers below 100,000 that are both prime and fibonacci number(some examples are 2,3,5,13,etc).design a thread that generates prime numbers below 100,000 and writes them
java - Design concepts & design patterns
java  design a vehicle class hierarchy in java.write a test program to demonstrate polymorphism.  Hi Friend, Try the following code: class Vehicle { void test(){} } class Bus extends Vehicle{ void test
java - Design concepts & design patterns
java  what is singleton design pattern?Give implementation of singleton design pattern? what is factory design pattern?and give its implementation.   Hi friend, class Singleton{ public static void main
java - Design concepts & design patterns
java  Q.No-1. Design a menu-driven interactive programme to find out capital cities of all the states of India using switch statement. Q.No-2. Write a programme to perform binary operations on integer argument. The arguments
java - Design concepts & design patterns
java  design classes for currency,rupee,and doller.write a program that randomly generates rupee and doller objects and write them into a file using object serialization.write another program to read that file,convert to rupee
java - Design concepts & design patterns
java   1.Develop multi-threaded echo server and a corresponding GUI client in java
java - Design concepts & design patterns
java  what is code for create 100 stringbuffers?  Hi Friend, Please visit the following link: http://www.roseindia.net/java/string-examples/creation-of-stringBuffer.shtml Hope that it will be helpful for you
java - Design concepts & design patterns
=28457 In java, we just declare Object references. Though you use the phrase
design patterns - Java Beginners
design patterns  what are the design patterns used in java?  Hi Friend, Please visit the following links: http://www.roseindia.net/designpattern/index.shtml http://www.roseindia.net/javatutorials/J2EE_singleton
Object oriented design - Java. - Design concepts & design patterns
Object oriented design - Java.  Hi, Everyone.Pls help me to develope my project of Object oriented design, as I have to submit it on thursday,3rd Dec. 2009.Nowadayz I am suffering from fever and not able to concentrate
Design pattern - Java Beginners
Design pattern  How to make a java program to check the java program is already started if started the execution then dont allow the new program to start
Design - Java Beginners
Design  What is Software Design & development
Java Collections - Design concepts & design patterns
Java Collections  I am designing an application where the program is meant to read from 2 different text files (eg FileA and FileB) containing so... but it takes up to 1 hour to complete the task. PLEASE I need a design concept
html form - Java Beginners
html form  Hi, I wnt to design a form with more than one action in submit button.thanks. regards, sakthi  Hi friend, You specify your main requirement of form with more then one action. Thanks
Java Collections - Design concepts & design patterns
Java Collections  I am designing an application where the program is meant to read from 2 different text files (eg FileA and FileB) containing so... a design concept or pattern that will achieve the task in the fastest time. Thank
java project - Design concepts & design patterns
java project  Hi, I wish to write a Java application project in school. I wish to humbly request for sample java project source codes to enable me write one. eg Hotel Reservation System, Flight scheduling system, Passenger
Java Script - Design concepts & design patterns
Java Script  how to merge two excel sheet using javascript, kindly give some clue
java script books - Design concepts & design patterns
java script books  Hi All, How are u? My Question is related to java script , what is the best book for javaScript (core and the advance feature). and also send me the name of WebSites. thanks and regards
java script code - Design concepts & design patterns
java script code  I want make header like-http://www.sigmainfotech.com.au/ this site but in this site header make in flash, I use java script or any other script. like that side click left side image it expand in header
java graphics - Design concepts & design patterns
java graphics  i dont wanna use Java3D but put solid 3D objects on screen, use z-buffering, ray-casting etc. to make realistic images...this will help build 3D fractals etc...Where must i begin reading
Java Aplications - Design concepts & design patterns
Java Aplications  Someone please help me write this Java programs i... the combination and don't have a pair of bolt cutters. Write a Java program... combinations will also open the lock. Write a Java program that prints out
java report - Design concepts & design patterns
java report  I use I Report for my report project, my problem is when the project to be .jar , project running but in report can't read from I Report.so data can't out from database. if i run from netbeans the report can to run
java compilation - Design concepts & design patterns
java compilation  write an algorithm which uses a stack to print a given string in reverse order. For example, if the string is `Fat cat`, the output should be `tac taf`. Use the usual stack methods and a method nextChar(S
java & servlet - Design concepts & design patterns
java & servlet  Sir I Took a project called SoftDocs inspired by GoogleDocs for my final year project.Though my teacher was in no mood to allocate this one,but i convinced him.Now I am facing a lot of problem.Can u tell me how
Java urgent - Design concepts & design patterns
Java urgent  Dera sir, Here is my compose mail page.How to integrate attach file(text or excel) in this page.How to store in the database.How to download it in another page.please help.This is mighty part left in the mail
design patterns - Java Interview Questions
design patterns  what is singleton design pattern?  Hi Friend, Please visit the following link: http://www.roseindia.net/javatutorials/J2EE_singleton_pattern.shtml Thanks
form to java script conversion
form to java script conversion  I am using a form one more form cotain a piece of code . how to convert it to java script to function it properly? code is shown below <form action="http://www.google.com" id="cse-search
form values in java script - Struts
form values in java script  how to get form values in java script functions with struts1.1
Without Using Form in Java Script
Without Using Form in Java Script  HOw to Reset the data in javascript without using form tag
java login form using netbeans
java login form using netbeans  how to connect an access database to a login form using netbeans
Print Form - Java Beginners
Print Form  Hello Sir I have Created Admission Form when user fills... want to get Print of that forms Contents,How I can Do it with JAVA SWING,plz...://www.roseindia.net/java/example/java/swing/Print.shtml Hope that it will be helpful
mdi form - Java Beginners
mdi form  Can I add JDesktopPane to panel? i wanna to have 2 panel in may form .......and the second panel i want to make mdi form. thanx
HTML form - Java Beginners
(form1 and form 2)with several fields in html. When i click the submit button, it validates all fields then moves to form2. i have a problem with form navigation. i want jsp code for form navication. thanks, regards. sakthi  Hi
form
form   Can I prevent a form from being submitted again
why we use design patterns in java?Example?
why we use design patterns in java?Example?  Hi..... Why we use design patterns?,why they are needed in programming languages?,advantages?  ... for you http://www.roseindia.net/designpattern/design-patterns.shtml http
How to make a design document for exception handling in java
How to make a design document for exception handling in java  How to make a design document for exception handling
Entity DB design pattern - Java Interview Questions
Entity DB design pattern  I want the information for Entity DB design pattern
java code along wid graphics design
java code along wid graphics design  actually i want to design nd make an apllication to solve a rubics cube of 3*3.. i have an algos wid me bt jus need ur guidance..plzz hlp out or if u have ny other ideas do suggest
Login Form in Java - Java Beginners
Login Form in Java  Hi, In my Project, I am using Java-JDBC-Mysql...) How to create frontage form in java to validate it. regards, Prashant...*; import java.awt.*; import java.awt.event.*; import java.sql.*; class Form
Visitor Design Pattern - Java Interview Questions
Visitor Design Pattern  Tell me, what is Visitor Design Pattern... for Visitor Design Pattern?  Visitor Design Pattern - Used to create external class, that act on data in other classes. In other words Visitor design
standart login form for messenger in java
standart login form for messenger in java  hi i need login from for chating messenger in java. but its structure would like this Home Register Login User ID Password   Hi Friend
standart login form for messenger in java
standart login form for messenger in java  hi i need login from for chating messenger in java. but its structure would like this Home Register Login User ID Password   Hi Friend

Ads