How to Create Complete Banking System Java Project
This is a mini project of banking. This is the first page where is a label, image, button.
Here you can see three different buttons that create an account, log in and cancel button.
CREATE Register (A/C) Button
when you click create account button you can see this interface
After filled formed then click on the OK button then your account will be created if any data is missing then it will show a message box
Create LOGIN BUTTON
When you click the login button then you can see this types of interface where you can log in with your Gmail and password
CANCEL BUTTON
when you click the cancel button then the program will be closed.
Banking System Project in Java Source Code:
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import java.io.*;
import java.util.*;
public class Banking3 extends JPanel implements ActionListener
{
JFrame f3;
JLabel l1;
JTextField t1;
JButton b1,b2;
Banking3()
{
f3=new JFrame(“amount page”);
l1=new JLabel(“Enter minimum amount(Rs:-1000)”);
t1=new JTextField(10);
ImageIcon bg1=new ImageIcon(“ok.png”);
ImageIcon bg2=new ImageIcon(“cancel.png”);
b1=new JButton(bg1);
b2=new JButton(bg2);
f3.setVisible(true);
f3.setSize(1000,1000);
f3.setLayout(null);
f3.setBackground(Color.yellow);
l1.setBounds(200,10,500,100);
t1.setBounds(400,40,300,50);
b1.setBounds(100,350,350,150);
b2.setBounds(600,350,350,150);
f3.add(l1);
f3.add(t1);
f3.add(b1);
f3.add(b2);
b1.addActionListener(this);
b2.addActionListener(this);
}
public void actionPerformed(ActionEvent ee)
{
if(ee.getSource().equals(b1))
{
System.out.println(” your account is created “);
}
if(ee.getSource().equals(b2))
{
f3.setVisible(false);
new Banking2();
}
}
public static void main(String ar[])
{
new Banking3();
}
}
If you want to see, How to create an A/C form then click here
COMPLETED PROJECTS:
- How to Create Forgot System Password with PHP & MySQL
- Datatables Editable Add Delete with Ajax, PHP & MySQL-My programming school
- Download Login and Registration form in PHP & MySQL-MPS
- Export Data to Excel in Php Code -My programming school
- Hospital Database Management System with PHP MySQL
- Java projects for beginners | java developer software | UML diagram
- Traffic Light using Applet in Java | algorithm and source code
- Currency converter using java
- Java program to design simple calculator with the use of grid layout
- Simple Notepad Editor using java|Gui application
- Online quiz application using java GUI with complete source code
- How to create color changer mini-project using java applet with source code
- How to make a Calculator using java Swing, GUI
- Canteen food order, generate total bill using java swing
- Currency Convertor java project, swing component
- Python Number Guessing Game mini Project
See my more website