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

Online Food Ordering Website project
Online Food Ordering Website projectOnline Food Ordering Website project
Online Food Ordering Website projectArpitsaxena79
 
Creating a Whatsapp Clone - Part I - Transcript.pdf
Creating a Whatsapp Clone - Part I - Transcript.pdfCreating a Whatsapp Clone - Part I - Transcript.pdf
Creating a Whatsapp Clone - Part I - Transcript.pdfShaiAlmog1
 
Internship Report on Online Banking Operation
Internship Report on Online Banking OperationInternship Report on Online Banking Operation
Internship Report on Online Banking OperationMSKarim2
 
Corporatepresentation indusind
Corporatepresentation indusindCorporatepresentation indusind
Corporatepresentation indusindAkshay Gaikwad
 
Ccavenue presentation
Ccavenue presentationCcavenue presentation
Ccavenue presentationAnurag Vikram
 
TRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docx
TRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docxTRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docx
TRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docxHimeshChaudhary
 
CURRENT TREND IN INTERNET BANKING (SUBJECT -ENGINEERING ECONOMICS AND MANAG...
CURRENT TREND  IN INTERNET BANKING (SUBJECT -ENGINEERING  ECONOMICS AND MANAG...CURRENT TREND  IN INTERNET BANKING (SUBJECT -ENGINEERING  ECONOMICS AND MANAG...
CURRENT TREND IN INTERNET BANKING (SUBJECT -ENGINEERING ECONOMICS AND MANAG...Vraj Patel
 
online education system project report
online education system project reportonline education system project report
online education system project reportHagi Sahib
 
RBI : Payment & Settlement Systems
RBI : Payment & Settlement SystemsRBI : Payment & Settlement Systems
RBI : Payment & Settlement SystemsRahul Deka
 
Unified payment interface and its security
Unified payment interface and its security Unified payment interface and its security
Unified payment interface and its security Akshay Dixit
 
DEEPESH KUSHWAH PROJECT 3rd sem 1.docx
DEEPESH KUSHWAH PROJECT 3rd sem 1.docxDEEPESH KUSHWAH PROJECT 3rd sem 1.docx
DEEPESH KUSHWAH PROJECT 3rd sem 1.docxDeepeshKushwah4
 
Online payment gateway provider
Online payment gateway providerOnline payment gateway provider
Online payment gateway providerPayment Gateways
 

La actualidad más candente (20)

Online Food Ordering Website project
Online Food Ordering Website projectOnline Food Ordering Website project
Online Food Ordering Website project
 
Creating a Whatsapp Clone - Part I - Transcript.pdf
Creating a Whatsapp Clone - Part I - Transcript.pdfCreating a Whatsapp Clone - Part I - Transcript.pdf
Creating a Whatsapp Clone - Part I - Transcript.pdf
 
Internship Report on Online Banking Operation
Internship Report on Online Banking OperationInternship Report on Online Banking Operation
Internship Report on Online Banking Operation
 
Digital banking
Digital bankingDigital banking
Digital banking
 
Corporatepresentation indusind
Corporatepresentation indusindCorporatepresentation indusind
Corporatepresentation indusind
 
Ccavenue presentation
Ccavenue presentationCcavenue presentation
Ccavenue presentation
 
TRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docx
TRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docxTRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docx
TRIBHUVAN UNIVERSITY BCA INTERNSHIP REPORT FOR 7 SEM.docx
 
CURRENT TREND IN INTERNET BANKING (SUBJECT -ENGINEERING ECONOMICS AND MANAG...
CURRENT TREND  IN INTERNET BANKING (SUBJECT -ENGINEERING  ECONOMICS AND MANAG...CURRENT TREND  IN INTERNET BANKING (SUBJECT -ENGINEERING  ECONOMICS AND MANAG...
CURRENT TREND IN INTERNET BANKING (SUBJECT -ENGINEERING ECONOMICS AND MANAG...
 
Remittances
RemittancesRemittances
Remittances
 
Online banking
Online bankingOnline banking
Online banking
 
Axis bank retail banking
Axis bank retail bankingAxis bank retail banking
Axis bank retail banking
 
online education system project report
online education system project reportonline education system project report
online education system project report
 
RBI : Payment & Settlement Systems
RBI : Payment & Settlement SystemsRBI : Payment & Settlement Systems
RBI : Payment & Settlement Systems
 
Rupay
RupayRupay
Rupay
 
Unified payment interface and its security
Unified payment interface and its security Unified payment interface and its security
Unified payment interface and its security
 
DEEPESH KUSHWAH PROJECT 3rd sem 1.docx
DEEPESH KUSHWAH PROJECT 3rd sem 1.docxDEEPESH KUSHWAH PROJECT 3rd sem 1.docx
DEEPESH KUSHWAH PROJECT 3rd sem 1.docx
 
Internship report
Internship reportInternship report
Internship report
 
VIJAYA BANK
VIJAYA BANK VIJAYA BANK
VIJAYA BANK
 
New Age Banking
New Age Banking New Age Banking
New Age Banking
 
Online payment gateway provider
Online payment gateway providerOnline payment gateway provider
Online payment gateway provider
 

Destacado

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 SBIRajesh Kumar
 
Database decommission process
Database decommission processDatabase decommission process
Database decommission processK Kumar Guduru
 
Como disenar un data center adc
Como disenar un data center adcComo disenar un data center adc
Como disenar un data center adcDaniel Ayosa
 
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 PleiterBackbase
 
Audit through core banking solution
Audit through core banking solutionAudit through core banking solution
Audit through core banking solutionCharudutt Marathe
 
4239 Misys Bank Fusion Presentation
4239 Misys Bank Fusion Presentation4239 Misys Bank Fusion Presentation
4239 Misys Bank Fusion Presentationsudha_20
 
Weblogic server administration
Weblogic server administrationWeblogic server administration
Weblogic server administrationbispsolutions
 
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 27005Melvin Jáquez
 
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 CostsIBM Banking
 
System architecture for central banks
System architecture for central banksSystem architecture for central banks
System architecture for central banksJean-Marc Lepain
 
Storage Consumption and Chargeback
Storage Consumption and ChargebackStorage Consumption and Chargeback
Storage Consumption and Chargebackbrettallison
 
P 3619--co-operative-banking-project
P 3619--co-operative-banking-projectP 3619--co-operative-banking-project
P 3619--co-operative-banking-projectraghuramyendakurthi
 

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

Hostel management system (5)
Hostel management system (5)Hostel management system (5)
Hostel management system (5)PRIYANKMZN
 
Bank Management System Desktop Application
Bank Management System Desktop Application Bank Management System Desktop Application
Bank Management System Desktop Application Ibadullah Khan
 
Online insurance broker portal
Online insurance broker portalOnline insurance broker portal
Online insurance broker portalDurgesh Singh
 
Online insurance broker portal
Online insurance broker portalOnline insurance broker portal
Online insurance broker portalimdurgesh
 
OS Password-Manager-Report.docx
OS Password-Manager-Report.docxOS Password-Manager-Report.docx
OS Password-Manager-Report.docxrinim85726
 
Issue Management System
Issue Management SystemIssue Management System
Issue Management SystemPratik Vipul
 
ProjectReport.docx project report pdf file
ProjectReport.docx project report pdf fileProjectReport.docx project report pdf file
ProjectReport.docx project report pdf filekomkar98230
 
ProjectReport.docx project documentation
ProjectReport.docx project documentationProjectReport.docx project documentation
ProjectReport.docx project documentationkomkar98230
 
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...Sarthak Khabiya
 
Ijsred v2 i5p95
Ijsred v2 i5p95Ijsred v2 i5p95
Ijsred v2 i5p95IJSRED
 
Attendance management system project report.
Attendance management system project report.Attendance management system project report.
Attendance management system project report.Manoj Kumar
 
College Management System project
College Management System projectCollege Management System project
College Management System projectManish Kushwaha
 
54024405 project-report-banking-management-system
54024405 project-report-banking-management-system54024405 project-report-banking-management-system
54024405 project-report-banking-management-systemnancs
 
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)Sruthi S
 
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-pdfDeepak Malusare
 

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
 
54024405 project-report-banking-management-system
54024405 project-report-banking-management-system54024405 project-report-banking-management-system
54024405 project-report-banking-management-system
 
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
 

Último

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
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 17Celine George
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
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.pdfAdmir Softic
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
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.christianmathematics
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 

Último (20)

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
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
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
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
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
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.
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 

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.