SlideShare una empresa de Scribd logo
1 de 29
Descargar para leer sin conexión
Any Time Any Place
                      Any Device Always ON…………




             Core Banking Project

                 Team Number: 13


Submitted To:                   Made By:
Mr.Vijay Gupta                  Sheetal Saha
Lecturer                        Narendra Kr.Prajapat
IIIM, Jaipur                    Sagar Chaturvedi
CERTIFICATE


This is to certify that this report embodies the original work
done by Sagar Chaturvedi, Sheetal Saha and Narendra
Prajapat during the project submission as a partial fulfillment
of the requirement for the System Design Project of
Masters of computer Application IV semester, of the
Rajasthan Technical University, Kota.

                                                   Swati V. Chande
                                                            Principal
                                                 (MCA Department)
               International School Of Informatics and Management




                                                     Mr. Vijay Gupta
                                                             Lecturer
                                                  (MCA Department)
               International School Of Informatics and Management
ACKNOLEDGEMENT

The satisfaction that accompanies the successful completion of any
task would be incomplete without the mention of people whose
ceaseless cooperation made it possible, whose constant guidance
and encouragement crown all efforts with success.

We are grateful to our project guide Mr. Vijay Gupta for the guidance,
inspiration and constructive suggestions that helpful us in the
preparation and execution of this project.

We would also express our thanks to our Friend Yogesh Jain and
people who have helped in successful completion of the project.




                                                   Sagar Chaturvedi
                                                      Sheetal Saha
                                                  Narendra Prajapat
Table of Contents


S.NO            TITLE              PAGE NO

 1.            SYNOPSIS


 2.       FEASIBILITY REPORT



 3.       PROJECT DESCRIPTION


 4.       DATA FLOW DIAGRAM


 5.        TABLE STRUCTURE


 6.          SOURCE CODE


 7.          FORM LAYOUT


 8.            REPORTS


 9.           CONCLUSION


 10.   REFRENCES & BIBILIOGRAPHY
SYNOPSIS


Purpose:-

The basic banking suite provides a global accounting foundation that
provides the all private banks with electronic banking facilities. It allows the
client of private banks to carry out their day to day banking transactions.




Scope:-

The core banking project is widely applicable with private banks. It can even
be used in industries for their personal transactions (working).




Technologies:-

    Hardware Requirements:-

           PC with 2GB hard disk
           256 MB RAM


    Software Requirements:-

           Windows XP with MS-OFFICE
           Database- MY SQL/MS-ACCESS
           Programming Language – VB.NET
           IDE- Visual Studio 2005
Overview:-
Core banking is all about knowing our customer need and provide them with
the right service at the right time through right channel 24*7 day a week.
Being “electronic”, it not only provides its customers with faster and better
facilities, it even reduces the manual overhead of accounts maintenance.

Functional components of the project:-

      Following are the functional needs of the software:-

      1. Customer must have a valid user ID and password to login to the
         system.
      2. After the valid user logs in, the system shows the present balance
         in that particular account number.
      3. Customer can perform transactions like deposit and withdrawal
         from his account.
      4. Proper help to be provided as and when requested by the customer.


More functionality can be added to “enhance the project”:-

      1. By adding new modules of different accounts like saving A/C,
         current A/C etc. to facilitate new customers/users.

      2. By the use of electronic media, “Digital Signature” on the card can
         be provided with the customer to make it secure and efficient.
FEASIBILITY REPORT
Understanding Feasibility
Feasibility study means the analysis of problem to determine if it
can be solved effectively. In other words it is the study of the
possibilities of the proposed system it studies the work ability,
impact on the organization ability to meet user’s need and efficient
use of resources.

Three aspects in which the system has to be feasible are:-


  1. ECONOMICAL FEASIBILITY:-

  The economical analysis checks for the high investment
  incurred on the system. It evaluates development &
  implementing charges for the proposed “Banking Project”. The
  S/W used for the development is easily available at minimal
  cost & the database applied is freely available hence it results in
  low cost implementation.

  2. TECHNICAL FEASIBILITY:-

  This aspect concentrates on the concept of using Computer
  Meaning, “Mechanization” of human works. Thus the
  automated solution leads to the need for a technical feasibility
  study. The focus on the platform used database management &
  users for that S/W.
  The proposed system doesn’t require an in depth technical
  knowledge as the system development is simple and easy to
  understand. The S/W (VB.NET) used makes the system user
  friendly (GUI). The result obtain should be true in the real time
  conditions.
3. BEHAVIOURAL FEASIBILITY:-

Behavioral feasibility deals with the runtime performance of the
S/W the proposed system must score higher than the present in
the behavioral study. The S/W should have end user in mind
when the system is designed while designing s/w the
programmer should be aware of the conditions user’s.
Knowledge input, output, calculations etc. The s/w contains
only a minimum no. of bugs. Care should be also taken to avoid
non-working means & buttons.
“PRESENT SYSTEM”
The developed system is an innovation in the area of private
banking. In the existing system the no. of staff required for
completing the work is more, while the new system requires lesser
staffs generally. The data entry process requires the data on the
paper, which is then feed into the application by the operator while
doing so; the data entry operator has to look into the paper again &
again and thus the chances of inaccuracies in the typed contents
increases. Also the process includes higher transportation cost,
increased handling cost, more time delays, low accuracy, more
usage of resources like registers, books, papers, etc.

               “PROPOSED SYSTEM”
“Why an Automated Private Banking System?”

 Almost 60% of today’s information is still paper based.
 30% of all office time is spent finding documents.
 The average time to manage a single document is 12 minutes,
  9 minutes to re-file and 3 minutes to process.

Hence the requirement is to develop a system that minimizes all
these overheads included while giving the maximum output for the
organization. The basis for the project is to develop a fully
automated banking system that includes depositing of amount,
withdrawal of amount and exporting the outcome back to the client
while considering all the tools and facilities than a client may need
for efficient and effective output.
Benefits of the system

 Quick, authenticated access to accounts via the desktop.
 Easily scalable to grow with changing system requirement.
 Enterprise wide access to information.
 Improved information security, restricting unauthorized access.
 Minimize Storage Space
  In manual system, much storage space for data files is required
  so to overcome this problem, on automated well managed
  database is developed for saving storage space. This s/w saves
  space and stores information efficiently. It ends the burden of
  having large manual filing storage system


     .
    Banking System can be used extensively
          Withdrawal of amount by the client.
          Deposition of amount by the client.
          Faster balance enquiry.
TABLE STRUCTURE




Account_No    User_Name     Password   Acoount_Bal
    1        Sagar        007          1000
    2        James        008          2000
    3        Sheetal      009          3400
    4        Narendra     Prajapat     4000
SOURCE CODE

Module1
Module Module1
    Public con As New OleDb.OleDbConnection
    Public ds As New DataSet
    Public sql As String
    Public i As Integer
    Public da As OleDb.OleDbDataAdapter

End Module


Form1
Public Class frmForm1

    Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label1.Click

    End Sub

    Private Sub frmForm1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal
e As System.EventArgs) Handles PictureBox1.Click

    End Sub



    Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object,
ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles
LinkLabel1.LinkClicked
        frmForm2.Show()
        Me.Hide()

    End Sub
End Class
Form2

Public Class frmForm2

    Private Sub frmForm2_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
End Sub



    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

        sql = "select * from Login"

        con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:Documents and SettingsSagar007My DocumentsVisual Studio
2005ProjectsMyThirdProjectMyThirdProjectBank.mdb"

        con.Open()
        da = New OleDb.OleDbDataAdapter(sql, con)
        da.Fill(ds, "Login")
        If (txtTextBox1.Text.Trim = "") Then
            MsgBox("Please Enter User Name")
            Exit Sub
        ElseIf (txtTextBox3.Text.Trim = "") Then
            MsgBox("Please Enter Password")
            Exit Sub
        End If

        For i = 0 To ds.Tables("Login").Rows.Count - 1
            If (txtTextBox1.Text.Trim =
ds.Tables("Login").Rows(i).Item(2)) Then


                If (txtTextBox1.Text.Trim =
ds.Tables("Login").Rows(i).Item(2)) Then
                    If (txtTextBox3.Text.Trim =
ds.Tables("Login").Rows(i).Item(1)) Then

                        txtTextBox1.Clear()
                        txtTextBox3.Clear()
                        MsgBox("Welcome")
                        frmForm3.Show()
                        Me.Hide()

                         Exit For
                    Else
                        MsgBox("Password Does'nt match")
                         Exit Sub
                    End If
                End If
            Else
                MsgBox("User Doesn't Exist")
txtTextBox1.Clear()
                txtTextBox3.Clear()
                txtTextBox1.Focus()
                Exit For
            End If
        Next i

        con.Close()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click
        frmForm1.Show()
        Me.Hide()

    End Sub

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs)

    End Sub

    Private Sub txtTextBox1_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles txtTextBox1.TextChanged

    End Sub

    Private Sub btnButton3_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnButton3.Click
        frmForm7.Show()
        Me.Close()

    End Sub
End Class


Form3

Public Class frmForm3

    Private Sub frmForm3_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
        lblLabel2.Text = "Welcome" & " " &
ds.Tables("Login").Rows(i).Item(2)
    End Sub

    Private Sub lblLabel2_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles lblLabel2.Click

    End Sub

    Private Sub lblLabel1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles lblLabel1.Click

    End Sub
Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label1.Click

    End Sub

    Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label2.Click

    End Sub

    Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label3.Click

    End Sub

    Private Sub Label4_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label4.Click

    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
        frmForm4.Show()
        Me.Hide()
        frmForm4.Label2.Text = ds.Tables("Login").Rows(i).Item(2) & " "
& " ""Your Current Balance is" & " " & ":" &
ds.Tables("Login").Rows(i).Item(3)
        frmForm4.Label3.Text = "Your Account Number is" & " " & ":" &
ds.Tables("Login").Rows(i).Item(0)
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click
        frmForm5.Show()
        Me.Hide()

    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button3.Click
        frmForm6.Show()
        Me.Hide()

    End Sub

    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button4.Click
        frmForm2.Show()
        Me.Hide()


    End Sub
End Class
Form4

Public Class frmForm4

    Private Sub frmForm4_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label2.Click

    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
        frmForm3.Show()
        Me.Hide()
    End Sub
End Class


Form5

Public Class frmForm5

    Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label1.Click

    End Sub

    Private Sub frmForm5_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label2.Click

    End Sub

    Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label3.Click

    End Sub

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles TextBox1.TextChanged

    End Sub

    Private Sub TextBox2_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles TextBox2.TextChanged
    End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
        Dim Acc_Bal As String
        Dim New_Bal As String
        Dim str As String
        Dim cmd As New OleDb.OleDbCommand
        'Dim cb As New OleDb.OleDbCommandBuilder(da)
        con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:Documents and SettingsSagar007My DocumentsVisual Studio
2005ProjectsMyThirdProjectMyThirdProjectBank.mdb"
        con.Open()
        Acc_Bal = ds.Tables("Login").Rows(i).Item(3)
        TextBox2.Text = Acc_Bal + Double.Parse(TextBox1.Text)
        New_Bal = TextBox2.Text

        ds.Tables("Login").Rows(i).Item("Account_Bal") = New_Bal
        str = "update Login set Account_Bal='" & New_Bal & "' where
Account_No=" & i & " "
        cmd.Connection = con
        cmd.CommandText = str

        cmd.ExecuteNonQuery()
        con.Close()
        'da.Update(ds, "Login")
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click
        frmForm3.Show()
        Me.Hide()
    End Sub
End Class


Form6
Public Class frmForm6

    Private Sub frmForm6_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label2.Click

    End Sub

    Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Label3.Click

    End Sub

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles TextBox1.TextChanged
    End Sub
Private Sub TextBox2_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles TextBox2.TextChanged

    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
        Dim Cur_Bal As String
        Dim WithDraw_Bal As String
        Dim New_Bal As String
        Dim str As String
        Dim cmd As New OleDb.OleDbCommand
        con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:Documents and SettingsSagar007My DocumentsVisual Studio
2005ProjectsMyThirdProjectMyThirdProjectBank.mdb"
        con.Open()
        Cur_Bal = ds.Tables("Login").Rows(i).Item(3)
        WithDraw_Bal = TextBox1.Text
        If (Cur_Bal > WithDraw_Bal) Then
            New_Bal = Cur_Bal - WithDraw_Bal
            TextBox2.Text = New_Bal
            'Dim cb As New OleDb.OleDbCommandBuilder(da)
            ds.Tables("Login").Rows(i).Item(3) = New_Bal
            str = "update Login set Account_Bal= '" & New_Bal & "'
where Account_No=" & i & " "
            cmd.Connection = con
            cmd.CommandText = str

               cmd.ExecuteNonQuery()

               'da.Update(ds, "Login")
        Else
            MsgBox("WithDraw Amount is Greater Than Current Balance")
        End If
        con.Close()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click
        frmForm3.Show()
        Me.Hide()

    End Sub
End Class
Form7
Imports System.Data.DataRow
Imports System.Data.DataRowBuilder


Public Class frmForm7



    Private Sub TextBox3_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles TextBox3.TextChanged

    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
        If (TextBox1.Text = "") Then
            MsgBox("Enter User Name")
            Exit Sub
        ElseIf (TextBox2.Text = "") Then
            MsgBox("Enter Password")
            Exit Sub
        ElseIf (TextBox3.Text = "") Then
            MsgBox("Enter Confirm Password")
            Exit Sub
        End If
        sql = "select * from Login"
        con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:Documents and SettingsSagar007My DocumentsVisual Studio
2005ProjectsMyThirdProjectMyThirdProjectBank.mdb"
        con.Open()
        da = New OleDb.OleDbDataAdapter(sql, con)
        da.Fill(ds, "Login")
        For i = 0 To ds.Tables("Login").Rows.Count - 1
            If (TextBox1.Text.Trim =
ds.Tables("Login").Rows(i).Item(2)) Then
                MsgBox("User Exist Enter Some Other Name")
                TextBox1.Clear()
                TextBox2.Clear()
                TextBox3.Clear()
                TextBox4.Clear()
                TextBox1.Focus()
                con.Close()
                Exit Sub
            End If

        Next i
        If (TextBox2.Text = TextBox3.Text) Then
            Dim str As String
            Dim cmd As New OleDb.OleDbCommand

              str = "select count(User_Name) from Login"
              cmd.CommandText = str
              cmd.Connection = con
              Dim c As Integer
Dim dr As Data.IDataReader = cmd.ExecuteReader()
               While dr.Read
                   c = Val(dr.Item(0).ToString)

            End While
            dr.Close()
            If c = 0 Then
                c = 1
            Else
                c = c + 1
            End If
            str = "insert into Login values(" & c & " ,'" &
TextBox2.Text & "','" & TextBox1.Text & "'," &
Double.Parse(TextBox4.Text) & ")"
            cmd.Connection = con
            cmd.CommandText = str

               cmd.ExecuteNonQuery()

               MsgBox("New Record added to the Database")
               TextBox1.Clear()
               TextBox2.Clear()
               TextBox3.Clear()
               TextBox4.Clear()
               con.Close()
        Else
            MsgBox("Password Doesn't Match")
            TextBox2.Clear()
            TextBox3.Clear()
            TextBox2.Focus()
        End If


    End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button2.Click
        frmForm2.Show()
        Me.Hide()

    End Sub

    Private Sub TextBox4_TextChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles TextBox4.TextChanged

    End Sub

    Private Sub frmForm7_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load

    End Sub
End Class
FORM LAYOUT
CONCLUSION

This project developed, incorporated all the activities involved in the
browsing centre. It provides all necessary information to the management as
well as the customer with the use of this system; the user can simply sit in
front of the system and monitor all the activities without any physical
movement of the file. Management can service the customers request best in
time.
The system provides quickly and valuable information. These modules have
been integrated for effective use of the management for future forecasting
and for the current need.




SCOPE FOR FURTHER DEVELOPMENT:-

The system can be designed for further enhancement .This could also be
developed according to the growing needs of the customer.

Más contenido relacionado

La actualidad más candente

54039271 atm-project-report
54039271 atm-project-report54039271 atm-project-report
54039271 atm-project-report
Kalpana Reddy
 
Bank Management System
Bank Management SystemBank Management System
Bank Management System
Hasan Khan
 
09.project hospital management system
09.project hospital management system09.project hospital management system
09.project hospital management system
Abiola Oladejo
 

La actualidad más candente (20)

Payroll
PayrollPayroll
Payroll
 
54039271 atm-project-report
54039271 atm-project-report54039271 atm-project-report
54039271 atm-project-report
 
BANKING SYSTEM
BANKING SYSTEMBANKING SYSTEM
BANKING SYSTEM
 
Employee Management System
Employee Management SystemEmployee Management System
Employee Management System
 
Ignou MCA mini project report
Ignou MCA mini project reportIgnou MCA mini project report
Ignou MCA mini project report
 
Hospital mangement system report file
Hospital mangement system report fileHospital mangement system report file
Hospital mangement system report file
 
Mobile/Web App Development Project Report
Mobile/Web App Development Project ReportMobile/Web App Development Project Report
Mobile/Web App Development Project Report
 
Bank Management System
Bank Management SystemBank Management System
Bank Management System
 
09.project hospital management system
09.project hospital management system09.project hospital management system
09.project hospital management system
 
Payroll Management System SRS
Payroll Management System SRSPayroll Management System SRS
Payroll Management System SRS
 
Naresh_resume_23Aug
Naresh_resume_23AugNaresh_resume_23Aug
Naresh_resume_23Aug
 
Online banking for industrial presentation in college sav(1)
Online banking for industrial presentation in college  sav(1)Online banking for industrial presentation in college  sav(1)
Online banking for industrial presentation in college sav(1)
 
Sales and inventory management project report
Sales and inventory management project reportSales and inventory management project report
Sales and inventory management project report
 
Organization And Management Case Study Report, (IOE, TU)
Organization And Management Case Study Report, (IOE, TU)Organization And Management Case Study Report, (IOE, TU)
Organization And Management Case Study Report, (IOE, TU)
 
Kapil Jangid - BCA Final Year
Kapil Jangid - BCA Final YearKapil Jangid - BCA Final Year
Kapil Jangid - BCA Final Year
 
Online event management system
Online event management systemOnline event management system
Online event management system
 
Final project(news portal system).docx
Final project(news portal system).docxFinal project(news portal system).docx
Final project(news portal system).docx
 
Hospital management system
Hospital management systemHospital management system
Hospital management system
 
HDFC banking system SRS Document
HDFC banking system  SRS DocumentHDFC banking system  SRS Document
HDFC banking system SRS Document
 
automated doctor appointment and prescription management system
automated doctor appointment and prescription management systemautomated doctor appointment and prescription management system
automated doctor appointment and prescription management system
 

Destacado

Como disenar un data center adc
Como disenar un data center adcComo disenar un data center adc
Como disenar un data center adc
Daniel Ayosa
 
4239 Misys Bank Fusion Presentation
4239 Misys Bank Fusion Presentation4239 Misys Bank Fusion Presentation
4239 Misys Bank Fusion Presentation
sudha_20
 
System architecture for central banks
System architecture for central banksSystem architecture for central banks
System architecture for central banks
Jean-Marc Lepain
 
P 3619--co-operative-banking-project
P 3619--co-operative-banking-projectP 3619--co-operative-banking-project
P 3619--co-operative-banking-project
raghuramyendakurthi
 

Destacado (20)

Core Banking
Core BankingCore Banking
Core Banking
 
Core Banking Solution PPT of TCS and SBI
Core Banking Solution PPT of TCS and SBICore Banking Solution PPT of TCS and SBI
Core Banking Solution PPT of TCS and SBI
 
Core banking
Core bankingCore banking
Core banking
 
Core banking
Core bankingCore banking
Core banking
 
Database decommission process
Database decommission processDatabase decommission process
Database decommission process
 
Linux for Librarians
Linux for LibrariansLinux for Librarians
Linux for Librarians
 
Meeting Your Angels
Meeting Your AngelsMeeting Your Angels
Meeting Your Angels
 
Como disenar un data center adc
Como disenar un data center adcComo disenar un data center adc
Como disenar un data center adc
 
ASK EHS Safety Services and Consultancy
ASK EHS Safety Services and ConsultancyASK EHS Safety Services and Consultancy
ASK EHS Safety Services and Consultancy
 
Mobile Banking webinar, December 15, 2010 by Jouk Pleiter
Mobile Banking webinar, December 15, 2010 by Jouk PleiterMobile Banking webinar, December 15, 2010 by Jouk Pleiter
Mobile Banking webinar, December 15, 2010 by Jouk Pleiter
 
Audit through core banking solution
Audit through core banking solutionAudit through core banking solution
Audit through core banking solution
 
4239 Misys Bank Fusion Presentation
4239 Misys Bank Fusion Presentation4239 Misys Bank Fusion Presentation
4239 Misys Bank Fusion Presentation
 
Weblogic server administration
Weblogic server administrationWeblogic server administration
Weblogic server administration
 
Nlp in your daily life
Nlp in your daily lifeNlp in your daily life
Nlp in your daily life
 
ISO 22301, ISO 31000, TIA 942 e ISO 27005
ISO 22301, ISO 31000, TIA 942 e ISO 27005ISO 22301, ISO 31000, TIA 942 e ISO 27005
ISO 22301, ISO 31000, TIA 942 e ISO 27005
 
Core Banking Transformation: Solutions to Standardize Processes and Cut Costs
Core Banking Transformation: Solutions to Standardize Processes and Cut CostsCore Banking Transformation: Solutions to Standardize Processes and Cut Costs
Core Banking Transformation: Solutions to Standardize Processes and Cut Costs
 
System architecture for central banks
System architecture for central banksSystem architecture for central banks
System architecture for central banks
 
Storage Consumption and Chargeback
Storage Consumption and ChargebackStorage Consumption and Chargeback
Storage Consumption and Chargeback
 
P 3619--co-operative-banking-project
P 3619--co-operative-banking-projectP 3619--co-operative-banking-project
P 3619--co-operative-banking-project
 
Datacenter
DatacenterDatacenter
Datacenter
 

Similar a 13.project core banking system

OS Password-Manager-Report.docx
OS Password-Manager-Report.docxOS Password-Manager-Report.docx
OS Password-Manager-Report.docx
rinim85726
 
ProjectReport.docx project report pdf file
ProjectReport.docx project report pdf fileProjectReport.docx project report pdf file
ProjectReport.docx project report pdf file
komkar98230
 
ProjectReport.docx project documentation
ProjectReport.docx project documentationProjectReport.docx project documentation
ProjectReport.docx project documentation
komkar98230
 

Similar a 13.project core banking system (20)

Hostel management system (5)
Hostel management system (5)Hostel management system (5)
Hostel management system (5)
 
Bank Management System Desktop Application
Bank Management System Desktop Application Bank Management System Desktop Application
Bank Management System Desktop Application
 
Bank doc (autosaved)
Bank doc (autosaved)Bank doc (autosaved)
Bank doc (autosaved)
 
ASSIGNMENT
ASSIGNMENT ASSIGNMENT
ASSIGNMENT
 
Online insurance broker portal
Online insurance broker portalOnline insurance broker portal
Online insurance broker portal
 
Online insurance broker portal
Online insurance broker portalOnline insurance broker portal
Online insurance broker portal
 
OS Password-Manager-Report.docx
OS Password-Manager-Report.docxOS Password-Manager-Report.docx
OS Password-Manager-Report.docx
 
Issue Management System
Issue Management SystemIssue Management System
Issue Management System
 
ProjectReport.docx project report pdf file
ProjectReport.docx project report pdf fileProjectReport.docx project report pdf file
ProjectReport.docx project report pdf file
 
ProjectReport.docx project documentation
ProjectReport.docx project documentationProjectReport.docx project documentation
ProjectReport.docx project documentation
 
Java Project "JPS-School Management System" CBSE AISSCE Pratical Examination...
 Java Project "JPS-School Management System" CBSE AISSCE Pratical Examination... Java Project "JPS-School Management System" CBSE AISSCE Pratical Examination...
Java Project "JPS-School Management System" CBSE AISSCE Pratical Examination...
 
Ijsred v2 i5p95
Ijsred v2 i5p95Ijsred v2 i5p95
Ijsred v2 i5p95
 
Attendance management system project report.
Attendance management system project report.Attendance management system project report.
Attendance management system project report.
 
Students Club
Students ClubStudents Club
Students Club
 
Shrivastav
ShrivastavShrivastav
Shrivastav
 
College Management System project
College Management System projectCollege Management System project
College Management System project
 
ATHARVA FEST
ATHARVA FESTATHARVA FEST
ATHARVA FEST
 
22598435 project-on-banking-system-in-mis-pdf(1)
22598435 project-on-banking-system-in-mis-pdf(1)22598435 project-on-banking-system-in-mis-pdf(1)
22598435 project-on-banking-system-in-mis-pdf(1)
 
22598435 project-on-banking-system-in-mis-pdf
22598435 project-on-banking-system-in-mis-pdf22598435 project-on-banking-system-in-mis-pdf
22598435 project-on-banking-system-in-mis-pdf
 
combinepdf
combinepdfcombinepdf
combinepdf
 

Último

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
MateoGardella
 

Último (20)

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 

13.project core banking system

  • 1. Any Time Any Place Any Device Always ON………… Core Banking Project Team Number: 13 Submitted To: Made By: Mr.Vijay Gupta Sheetal Saha Lecturer Narendra Kr.Prajapat IIIM, Jaipur Sagar Chaturvedi
  • 2. CERTIFICATE This is to certify that this report embodies the original work done by Sagar Chaturvedi, Sheetal Saha and Narendra Prajapat during the project submission as a partial fulfillment of the requirement for the System Design Project of Masters of computer Application IV semester, of the Rajasthan Technical University, Kota. Swati V. Chande Principal (MCA Department) International School Of Informatics and Management Mr. Vijay Gupta Lecturer (MCA Department) International School Of Informatics and Management
  • 3. ACKNOLEDGEMENT The satisfaction that accompanies the successful completion of any task would be incomplete without the mention of people whose ceaseless cooperation made it possible, whose constant guidance and encouragement crown all efforts with success. We are grateful to our project guide Mr. Vijay Gupta for the guidance, inspiration and constructive suggestions that helpful us in the preparation and execution of this project. We would also express our thanks to our Friend Yogesh Jain and people who have helped in successful completion of the project. Sagar Chaturvedi Sheetal Saha Narendra Prajapat
  • 4. Table of Contents S.NO TITLE PAGE NO 1. SYNOPSIS 2. FEASIBILITY REPORT 3. PROJECT DESCRIPTION 4. DATA FLOW DIAGRAM 5. TABLE STRUCTURE 6. SOURCE CODE 7. FORM LAYOUT 8. REPORTS 9. CONCLUSION 10. REFRENCES & BIBILIOGRAPHY
  • 5. SYNOPSIS Purpose:- The basic banking suite provides a global accounting foundation that provides the all private banks with electronic banking facilities. It allows the client of private banks to carry out their day to day banking transactions. Scope:- The core banking project is widely applicable with private banks. It can even be used in industries for their personal transactions (working). Technologies:-  Hardware Requirements:-  PC with 2GB hard disk  256 MB RAM  Software Requirements:-  Windows XP with MS-OFFICE  Database- MY SQL/MS-ACCESS  Programming Language – VB.NET  IDE- Visual Studio 2005
  • 6. Overview:- Core banking is all about knowing our customer need and provide them with the right service at the right time through right channel 24*7 day a week. Being “electronic”, it not only provides its customers with faster and better facilities, it even reduces the manual overhead of accounts maintenance. Functional components of the project:- Following are the functional needs of the software:- 1. Customer must have a valid user ID and password to login to the system. 2. After the valid user logs in, the system shows the present balance in that particular account number. 3. Customer can perform transactions like deposit and withdrawal from his account. 4. Proper help to be provided as and when requested by the customer. More functionality can be added to “enhance the project”:- 1. By adding new modules of different accounts like saving A/C, current A/C etc. to facilitate new customers/users. 2. By the use of electronic media, “Digital Signature” on the card can be provided with the customer to make it secure and efficient.
  • 8. Understanding Feasibility Feasibility study means the analysis of problem to determine if it can be solved effectively. In other words it is the study of the possibilities of the proposed system it studies the work ability, impact on the organization ability to meet user’s need and efficient use of resources. Three aspects in which the system has to be feasible are:- 1. ECONOMICAL FEASIBILITY:- The economical analysis checks for the high investment incurred on the system. It evaluates development & implementing charges for the proposed “Banking Project”. The S/W used for the development is easily available at minimal cost & the database applied is freely available hence it results in low cost implementation. 2. TECHNICAL FEASIBILITY:- This aspect concentrates on the concept of using Computer Meaning, “Mechanization” of human works. Thus the automated solution leads to the need for a technical feasibility study. The focus on the platform used database management & users for that S/W. The proposed system doesn’t require an in depth technical knowledge as the system development is simple and easy to understand. The S/W (VB.NET) used makes the system user friendly (GUI). The result obtain should be true in the real time conditions.
  • 9. 3. BEHAVIOURAL FEASIBILITY:- Behavioral feasibility deals with the runtime performance of the S/W the proposed system must score higher than the present in the behavioral study. The S/W should have end user in mind when the system is designed while designing s/w the programmer should be aware of the conditions user’s. Knowledge input, output, calculations etc. The s/w contains only a minimum no. of bugs. Care should be also taken to avoid non-working means & buttons.
  • 10. “PRESENT SYSTEM” The developed system is an innovation in the area of private banking. In the existing system the no. of staff required for completing the work is more, while the new system requires lesser staffs generally. The data entry process requires the data on the paper, which is then feed into the application by the operator while doing so; the data entry operator has to look into the paper again & again and thus the chances of inaccuracies in the typed contents increases. Also the process includes higher transportation cost, increased handling cost, more time delays, low accuracy, more usage of resources like registers, books, papers, etc. “PROPOSED SYSTEM” “Why an Automated Private Banking System?”  Almost 60% of today’s information is still paper based.  30% of all office time is spent finding documents.  The average time to manage a single document is 12 minutes, 9 minutes to re-file and 3 minutes to process. Hence the requirement is to develop a system that minimizes all these overheads included while giving the maximum output for the organization. The basis for the project is to develop a fully automated banking system that includes depositing of amount, withdrawal of amount and exporting the outcome back to the client while considering all the tools and facilities than a client may need for efficient and effective output.
  • 11. Benefits of the system  Quick, authenticated access to accounts via the desktop.  Easily scalable to grow with changing system requirement.  Enterprise wide access to information.  Improved information security, restricting unauthorized access.  Minimize Storage Space In manual system, much storage space for data files is required so to overcome this problem, on automated well managed database is developed for saving storage space. This s/w saves space and stores information efficiently. It ends the burden of having large manual filing storage system . Banking System can be used extensively  Withdrawal of amount by the client.  Deposition of amount by the client.  Faster balance enquiry.
  • 12. TABLE STRUCTURE Account_No User_Name Password Acoount_Bal 1 Sagar 007 1000 2 James 008 2000 3 Sheetal 009 3400 4 Narendra Prajapat 4000
  • 13. SOURCE CODE Module1 Module Module1 Public con As New OleDb.OleDbConnection Public ds As New DataSet Public sql As String Public i As Integer Public da As OleDb.OleDbDataAdapter End Module Form1 Public Class frmForm1 Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub frmForm1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click End Sub Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked frmForm2.Show() Me.Hide() End Sub End Class
  • 14. Form2 Public Class frmForm2 Private Sub frmForm2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click sql = "select * from Login" con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:Documents and SettingsSagar007My DocumentsVisual Studio 2005ProjectsMyThirdProjectMyThirdProjectBank.mdb" con.Open() da = New OleDb.OleDbDataAdapter(sql, con) da.Fill(ds, "Login") If (txtTextBox1.Text.Trim = "") Then MsgBox("Please Enter User Name") Exit Sub ElseIf (txtTextBox3.Text.Trim = "") Then MsgBox("Please Enter Password") Exit Sub End If For i = 0 To ds.Tables("Login").Rows.Count - 1 If (txtTextBox1.Text.Trim = ds.Tables("Login").Rows(i).Item(2)) Then If (txtTextBox1.Text.Trim = ds.Tables("Login").Rows(i).Item(2)) Then If (txtTextBox3.Text.Trim = ds.Tables("Login").Rows(i).Item(1)) Then txtTextBox1.Clear() txtTextBox3.Clear() MsgBox("Welcome") frmForm3.Show() Me.Hide() Exit For Else MsgBox("Password Does'nt match") Exit Sub End If End If Else MsgBox("User Doesn't Exist")
  • 15. txtTextBox1.Clear() txtTextBox3.Clear() txtTextBox1.Focus() Exit For End If Next i con.Close() End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click frmForm1.Show() Me.Hide() End Sub Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) End Sub Private Sub txtTextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtTextBox1.TextChanged End Sub Private Sub btnButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnButton3.Click frmForm7.Show() Me.Close() End Sub End Class Form3 Public Class frmForm3 Private Sub frmForm3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load lblLabel2.Text = "Welcome" & " " & ds.Tables("Login").Rows(i).Item(2) End Sub Private Sub lblLabel2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblLabel2.Click End Sub Private Sub lblLabel1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblLabel1.Click End Sub
  • 16. Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click End Sub Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click End Sub Private Sub Label4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label4.Click End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click frmForm4.Show() Me.Hide() frmForm4.Label2.Text = ds.Tables("Login").Rows(i).Item(2) & " " & " ""Your Current Balance is" & " " & ":" & ds.Tables("Login").Rows(i).Item(3) frmForm4.Label3.Text = "Your Account Number is" & " " & ":" & ds.Tables("Login").Rows(i).Item(0) End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click frmForm5.Show() Me.Hide() End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click frmForm6.Show() Me.Hide() End Sub Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click frmForm2.Show() Me.Hide() End Sub End Class
  • 17. Form4 Public Class frmForm4 Private Sub frmForm4_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click frmForm3.Show() Me.Hide() End Sub End Class Form5 Public Class frmForm5 Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub frmForm5_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click End Sub Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click End Sub Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged End Sub Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged End Sub
  • 18. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Acc_Bal As String Dim New_Bal As String Dim str As String Dim cmd As New OleDb.OleDbCommand 'Dim cb As New OleDb.OleDbCommandBuilder(da) con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:Documents and SettingsSagar007My DocumentsVisual Studio 2005ProjectsMyThirdProjectMyThirdProjectBank.mdb" con.Open() Acc_Bal = ds.Tables("Login").Rows(i).Item(3) TextBox2.Text = Acc_Bal + Double.Parse(TextBox1.Text) New_Bal = TextBox2.Text ds.Tables("Login").Rows(i).Item("Account_Bal") = New_Bal str = "update Login set Account_Bal='" & New_Bal & "' where Account_No=" & i & " " cmd.Connection = con cmd.CommandText = str cmd.ExecuteNonQuery() con.Close() 'da.Update(ds, "Login") End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click frmForm3.Show() Me.Hide() End Sub End Class Form6 Public Class frmForm6 Private Sub frmForm6_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click End Sub Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click End Sub Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged End Sub
  • 19. Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Cur_Bal As String Dim WithDraw_Bal As String Dim New_Bal As String Dim str As String Dim cmd As New OleDb.OleDbCommand con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:Documents and SettingsSagar007My DocumentsVisual Studio 2005ProjectsMyThirdProjectMyThirdProjectBank.mdb" con.Open() Cur_Bal = ds.Tables("Login").Rows(i).Item(3) WithDraw_Bal = TextBox1.Text If (Cur_Bal > WithDraw_Bal) Then New_Bal = Cur_Bal - WithDraw_Bal TextBox2.Text = New_Bal 'Dim cb As New OleDb.OleDbCommandBuilder(da) ds.Tables("Login").Rows(i).Item(3) = New_Bal str = "update Login set Account_Bal= '" & New_Bal & "' where Account_No=" & i & " " cmd.Connection = con cmd.CommandText = str cmd.ExecuteNonQuery() 'da.Update(ds, "Login") Else MsgBox("WithDraw Amount is Greater Than Current Balance") End If con.Close() End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click frmForm3.Show() Me.Hide() End Sub End Class
  • 20. Form7 Imports System.Data.DataRow Imports System.Data.DataRowBuilder Public Class frmForm7 Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If (TextBox1.Text = "") Then MsgBox("Enter User Name") Exit Sub ElseIf (TextBox2.Text = "") Then MsgBox("Enter Password") Exit Sub ElseIf (TextBox3.Text = "") Then MsgBox("Enter Confirm Password") Exit Sub End If sql = "select * from Login" con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:Documents and SettingsSagar007My DocumentsVisual Studio 2005ProjectsMyThirdProjectMyThirdProjectBank.mdb" con.Open() da = New OleDb.OleDbDataAdapter(sql, con) da.Fill(ds, "Login") For i = 0 To ds.Tables("Login").Rows.Count - 1 If (TextBox1.Text.Trim = ds.Tables("Login").Rows(i).Item(2)) Then MsgBox("User Exist Enter Some Other Name") TextBox1.Clear() TextBox2.Clear() TextBox3.Clear() TextBox4.Clear() TextBox1.Focus() con.Close() Exit Sub End If Next i If (TextBox2.Text = TextBox3.Text) Then Dim str As String Dim cmd As New OleDb.OleDbCommand str = "select count(User_Name) from Login" cmd.CommandText = str cmd.Connection = con Dim c As Integer
  • 21. Dim dr As Data.IDataReader = cmd.ExecuteReader() While dr.Read c = Val(dr.Item(0).ToString) End While dr.Close() If c = 0 Then c = 1 Else c = c + 1 End If str = "insert into Login values(" & c & " ,'" & TextBox2.Text & "','" & TextBox1.Text & "'," & Double.Parse(TextBox4.Text) & ")" cmd.Connection = con cmd.CommandText = str cmd.ExecuteNonQuery() MsgBox("New Record added to the Database") TextBox1.Clear() TextBox2.Clear() TextBox3.Clear() TextBox4.Clear() con.Close() Else MsgBox("Password Doesn't Match") TextBox2.Clear() TextBox3.Clear() TextBox2.Focus() End If End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click frmForm2.Show() Me.Hide() End Sub Private Sub TextBox4_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox4.TextChanged End Sub Private Sub frmForm7_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub End Class
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29. CONCLUSION This project developed, incorporated all the activities involved in the browsing centre. It provides all necessary information to the management as well as the customer with the use of this system; the user can simply sit in front of the system and monitor all the activities without any physical movement of the file. Management can service the customers request best in time. The system provides quickly and valuable information. These modules have been integrated for effective use of the management for future forecasting and for the current need. SCOPE FOR FURTHER DEVELOPMENT:- The system can be designed for further enhancement .This could also be developed according to the growing needs of the customer.