0% found this document useful (0 votes)
40 views9 pages

Passport Automation System: EX. NO.:1 Date

This document describes a passport automation system that was created to gather, validate, and issue passport information stored in a database. The system uses Microsoft Access as the backend database and Visual Basic as the frontend interface. It includes forms for login, entering applicant details, and searching/updating records. Diagrams are provided depicting use cases, class relationships, and workflow processes. The system was implemented with tables in the Access database for login information and applicant details. Testing verified that the output meets the goals of the system.

Uploaded by

suriteddy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views9 pages

Passport Automation System: EX. NO.:1 Date

This document describes a passport automation system that was created to gather, validate, and issue passport information stored in a database. The system uses Microsoft Access as the backend database and Visual Basic as the frontend interface. It includes forms for login, entering applicant details, and searching/updating records. Diagrams are provided depicting use cases, class relationships, and workflow processes. The system was implemented with tables in the Access database for login information and applicant details. Testing verified that the output meets the goals of the system.

Uploaded by

suriteddy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

EX. NO.

:1 DATE:
AIM:

PASSPORT AUTOMATION SYSTEM

To create a system to gather the information regarding passport that have been stored in the database and to issue passport. PROBLEM STATEMENT: The purpose of this system is to analyze and perform operation on data stored in the database and to provide authentication to avoid unauthorized access by using MS-Access as back end and VB to use as the front end. The entire system is divided into various modules and it has its own objects and classes.

Reports are provided on their basis:


gather information checking validate issue passport

The main advantage in our system is that data entry becomes very easy and other manipulation, updating can be done easily.

Form description: Form1: Login Form


Here the user name and password is checked and access is granted if the verified data is correct.

Form2: Applicant details


Here the details of the applicants are entered and it is stored in the database. We can also search the details of a particular applicant and also make changes to the available data.

Software requirements:
Microsoft Visual Basic 6.0 is used as front- end for our project and MS-Access is used as back-end to store the data.

DIAGRAM:

USECASE

CLASS DIAGRAM:

LOGIN SEQUENCE DIAGRAM

ACTIVITY DIAGRAM:

STATE CHART DIAGRAM:

COLLABORATION DIAGRAM:

FORM 1:

Coding:
Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = "anitha" And TextBox2.Text = "devi" Then Form2.Show() Else MessageBox.Show("incorrect username or password") End If End Sub

Form 2:

Table requirement:
There are two tables required. They are: 1. Login table 2. Applicants detail table

LOGIN TABLE:

APPLICANTS DETAIL TABLE:

RESULT:
Thus the system for Passport Automation is created and executed. The output is verified.

You might also like