abt proj
I made login page, when i click on login button , thaen how to go on home page on home page containe some tab like add, delete, update,etc.
plz help
thanx
View Answers
February 3, 2010 at 12:44 PM
Hi Friend,
Try the following:
1)LoginDemo.java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
class LoginDemo extends JFrame{
JButton SUBMIT;
JPanel panel;
JLabel label1,label2;
final JTextField text1;
final JPasswordField text2;
LoginDemo(){
label1 = new JLabel();
label1.setText("UserName:");
text1 = new JTextField(15);
label2 = new JLabel();
label2.setText("Password:");
text2 = new JPasswordField(15);
SUBMIT=new JButton("Login");
panel=new JPanel(new GridLayout(4,2));
panel.add(label1);
panel.add(text1);
panel.add(label2);
panel.add(text2);
panel.add(SUBMIT);
add(panel,BorderLayout.CENTER);
SUBMIT.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
String value1=text1.getText();
String value2=text2.getText();
String user1="";
String pass1="";
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:
mysql://localhost:3306/test";, "root", "root");
Statement st = con.createStatement();
ResultSet res = st.executeQuery("SELECT * FROM login where username='"+value1+"' && password='"+value2+"'");
while (res.next()) {
user1 = res.getString("username");
pass1 = res.getString("password");
}
if (value1.equals(user1) && value2.equals(pass1)) {
HomePage page=new HomePage();
page.setVisible(true);
}
else{
JOptionPane.showMessageDialog(null,"Incorrect login or password","Error",JOptionPane.ERROR_MESSAGE);
}
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
});
}
public static void main(String arg[]) {
LoginDemo frame=new LoginDemo();
frame.pack();
frame.setVisible(true);
}
}
February 3, 2010 at 12:45 PM
continue...
2)HomePage.java:
import java.io.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.sql.*;
import java.util.*;
class HomePage extends JFrame{
JPanel p1,p2,p3;
JTabbedPane tp;
HomePage(){
p1=new JPanel(new GridLayout(5,2));
p2=new JPanel(new GridLayout(5,2));
p3=new JPanel(new GridLayout(2,2));
tp=new JTabbedPane();
tp.addTab("Add Record",p1);
tp.addTab("Edit Record",p2);
tp.addTab("Delete Record",p3);
add(tp);
setSize(300,150);
setVisible(true);
}
public static void main(String z[]){
HomePage pro=new HomePage();
}
}
For more information, visit the following link:
http://www.roseindia.net/java/example/java/swing/add_edit_and_delete_employee_inf.shtmlThanks
Related Tutorials/Questions & Answers:
abt proj - Java Beginnersabt proj if we have already make login page and resister page, if i click on the login button we go to the home page ,home page contain some data
plz help
abt proj - Java Beginnersabt proj which topic i have to study carefully ,when I am going to start java project using swings Hi Friend,
Learn awt, swing containers, components, Events etc.
For more information,visit the following links
Advertisements
abt proj - Java Beginnersabt proj I made login page, when i click on login button , thaen how to go on home page on home page containe some tab like add, delete, update,etc.
plz help
thanx Hi Friend,
Try the following:
1)LoginDemo.java
ModuleNotFoundError: No module named 'abt'ModuleNotFoundError: No module named '
abt' Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named '
abt'
How to remove the ModuleNotFoundError: No module named '
abt' error
ModuleNotFoundError: No module named 'proj'ModuleNotFoundError: No module named '
proj' Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named '
proj'
How to remove the ModuleNotFoundError: No module named '
proj' error
abt the bank applicationabt the bank application pls can u send to me the user table and transaction table sql statement with their datatype used in this bank application to my email
ModuleNotFoundError: No module named 'alp-proj'ModuleNotFoundError: No module named 'alp-
proj' Hi,
My Python...-
proj'
How to remove the ModuleNotFoundError: No module named 'alp-
proj... to install padas library.
You can install alp-
proj python with following
ModuleNotFoundError: No module named 'alp-proj'ModuleNotFoundError: No module named 'alp-
proj' Hi,
My Python...-
proj'
How to remove the ModuleNotFoundError: No module named 'alp-
proj... to install padas library.
You can install alp-
proj python with following
ModuleNotFoundError: No module named 'bong-proj'ModuleNotFoundError: No module named 'bong-
proj' Hi,
My Python... 'bong-
proj'
How to remove the ModuleNotFoundError: No module named 'bong-
proj' error?
Thanks
Hi,
In your python environment you
abt java - Java Beginnersabt java hiiiii
i m new to this language
i have some problem with my java code ... i working on netbeans ..
i write a code for user authetication ... in this code it take user name password and a user certificate(which
abt java project - Java Beginnersabt java project I don't know too much about java , and I am working on java project, where editor is eclipse and backend postgresql
How can i take help about my project, which book I should refers plz help me
abt java project - Java Beginnersabt java project How to make the home page that contain four tabbedPane like additem, deleteitem ,update etc,
so plz help me
thanx Hi Friend,
Please go through the following link:
http://www.roseindia.net
abt java project - Java Beginnersabt java project this program compile sucessfully but data is not store in data base if any thing correction plz do it
import java.awt.*;
import javax.swing.*;
import java.sql.*;
import java.awt.event.*;
public class
abt jmeter - Java Server Faces Questionsabt jmeter how to use jmeter for testing the program?
Hi friend,
For using jmeter for testing visit to :
http://www.roseindia.net/jmeter/
http://www.roseindia.net/jmeter/using-jmeter.shtml
Thanks
need to ans abt db - JSP-Servletneed to ans
abt db helllo can you tell me
m just starting to knowing
abt servlet and i trying to making e-mail site so can you tell me with the java servlet wht is the backhand database to use to proper with that site
absolutely no idea abt a program - Java Beginnersabsolutely no idea
abt a program write a program in java/blue to accept a string from the user and arrange it alphabetically wordwise..
example-
input--i am a boy.
output--a am boy i.
Hi friend,
Code
ClusteringClustering Plz let me know
abt Clustering in Java with an example
javajava how to set SMS alert in my
proj? Pls tel me the procedure
j2mej2me COmmand c=new Command("Exit",Command.EXIT,100);Please expalin
abt 3 parameters
Menu Bar prob.Menu Bar prob. I want a menu to be displayed in each page of my swing appl. how to go
abt