Shivaji University, Kolhapur - Kamala College, Kolhapur
Shivaji University, Kolhapur - Kamala College, Kolhapur
Increased end-user productivity because of Every organization has a system generating and
flexible data access. monitoring various kinds of data and report that
are very relavant for the smooth functioning of
Graphical oriented, highly interactive user that organization. Effective decisions are to be
interface. taken by the management based on the current
Increased developer productivity through usage data information which provides accurate and
of easy to use tools. help the management.
Improved access to information because of The main aim of this project is to maintain
computerizing. all the records by computerized the watch
showroom.This existing system is a manual
Easier maintenance of application and data. system.so there is a lot of limitation like large
number of man power. On using this project
customer could view and purchase the product
directly.It gives computerization helps the
supplier to reduce the paperwork.
Organization Profile
Quality Maintenance
Reasonable Price
Regular Customer
New Varieties
Discount Sale
Existing System
The study of existing system deals with the work
needed to carry out preliminary investigation.The study of
system can be performed only on the existing system.
Previously the account maintained manually. It take
long time, It invokes highest cost
If account books are missed it is difficult to retrieve the data.
In existing system the data are maintained manually.So the
retreiving the information is very slow and also it requires lot of
manpower to the organize the data and to consolidate the
report.
Drawbacks of existing system
Waste of time for manual operations.
Unauthenticated accessing.
Hardware Specification
3) RAM : 128 MB
4) Hard Disk : 20 GB
Modularity
Modularity is a single attribute of software that allows the
program to be intellectually manageable. The software is
divided into separately named and addressable components,
called modules which are integrated to satisfy problem
required.
Data structure
Data structure is a representation of a logical relationship
among individual elements of data. Data structure dictates the
organization methods of access, degree of associatively, and
processing alternatives for information. It can be represented
at different levels of abstraction.
Data Flow Diagram
An arrow identifies
dataflow.
Size
Field Name Data Type Description
Size
Field Name Data Type Description
Product_Re
Integer 2 Product Reference Number
f_No
Cheque_DD_D
Date/Time 8 Cheque Demand Draft Date
ate
Table Name : Sales_Information
Module description
Employee Details
Company Information
Screen shorts
Employee Details
SAMPLE CODING
Employee Details
Dim db As Database
Dim rs As Recordset
If KeyAscii = 13 Then
txtmobileno.SetFocus
End If
End Sub
Private Sub cmdadd_Click()
Text_clear
txtemployeeid.SetFocus
rs.AddNew
End Sub
Private Sub cmddelete_Click()
If rs.RecordCount = 0 Then
MsgBox " There is No Record ", vbSystemModal, "Watch
Shop"
Else
rs.Delete
Text_clear
MsgBox " Record Is Deleted Successfully ", vbSystemModal, "
Watch Shop"
rs.MoveFirst
Text_Load
End If
End Sub
Private Sub cmdexit_Click()
Unload Me
End Sub
Private Sub cmdfirst_Click()
If rs.RecordCount = 0 Then
MsgBox " There is No Record ", vbSystemModal, "Watch
Shop"
Else
rs.MoveFirst
Text_Load
End If
Private Sub cmdlast_Click()
If rs.RecordCount = 0 Then
MsgBox " There is No Record ", vbSystemModal, "Watch
Shop"
Else
rs.MoveLast
Text_Load
End If
End Sub
Private Sub cmdmodify_Click()
If rs.RecordCount = 0 Then
MsgBox " There is No Record ", vbSystemModal, "Watch
Shop"
Else
Text_Load
If MsgBox(" You Want To Modify This Record ", vbYesNo
+ vbQuestion) = vbYes Then
rs.Edit
Text_Load
End If
End If
End Sub
Private Sub cmdprevious_Click()
If rs.RecordCount = 0 Then
MsgBox " There is No Record ", vbSystemModal, "Watch
Shop"
Else
rs.MovePrevious
End If
rs.MoveFirst
MsgBox " This is The First Record ", vbSystemModal,
"Watch Shop"
End If
End If
Text_Load
End Sub
Private Sub cmdsave_click()
rs.Fields(0) = txtemployeeid.Text
rs.Fields(1) = txtempname.Text
rs.Fields(2) = txtsex.Text
rs.Fields(3) = cboqualification.Text
rs.Fields(4) = txtmobileno.Text
rs.Fields(5) = txtphone.Text
rs.Fields(6) = txtaddress.Text
rs.Fields(7) = txtasalary.Text
rs.Update
Private Sub Form_Load()
frmEmployeedetails.BackColor = RGB(253, 204, 153)
Set db = OpenDatabase("C:\Watch\Watch.mdb")
Set rs = db.OpenRecordset("Employee_Details")
End Sub
Private Sub Text_Load()
txtemployeeid.Text = rs.Fields(0)
txtempname.Text = rs.Fields(1)
txtsex.Text = rs.Fields(2)
cboqualification.Text = rs.Fields(3)
txtmobileno.Text = rs.Fields(4)
txtphone.Text = rs.Fields(5)
txtaddress.Text = rs.Fields(6)
txtasalary.Text = rs.Fields(7)
End Sub
Private Sub Text_clear()
txtemployeeid.Text = ""
txtempname.Text = ""
txtsex.Text = ""
cboqualification.Text = ""
txtmobileno.Text = ""
txtphone.Text = ""
txtaddress.Text = ""
txtasalary.Text = ""
End Sub
Private Sub cmdnext_Click()
If rs.RecordCount = 0 Then
MsgBox " There is No Record ", vbSystemModal, "Watch
Shop"
Else
rs.MoveNext
End If
If rs.RecordCount > 0 Then
If rs.EOF = True Then
rs.MoveLast
MsgBox " This is The Last Record ", vbSystemModal,
"Watch Shop"
End If
End If
Text_Load
End Sub
Private Sub optfemale_Click()
txtsex.Text = optfemale.Caption
End Sub
Private Sub optmale_Click()
txtsex.Text = optmale.Caption
End Sub
Private Sub txtaddress_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
txtasalary.SetFocus
End If
End Sub
Private Sub txtasalary_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
cmdsave.SetFocus
End If
End Sub
Private Sub txtemployeeid_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
txtempname.SetFocus
End If
End Sub
Private Sub txtempname_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
txtsex.SetFocus
End If
End Sub
Private Sub txtphone_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
txtaddress.SetFocus
End If
End Sub
Private Sub txtsex_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
cboqualification.SetFocus
End If
End Sub
MDI FORM
Private Sub mascompanyinformation_Click()
frmCompanyinf.Show
End Sub
Private Sub masemployee_Click()
frmEmployeedetails.Show
End Sub
Private Sub maswatchinformation_Click()
frmWatchinformation.Show
End Sub
Private Sub mnuclose_Click()
End
End Sub
Private Sub rptcompany_Click()
rptcompanyinformation.Show
End Sub
Private Sub rptemployee_Click()
rptemployeedetails.Show
End Sub
Private Sub rptpurchase_Click()
rptpurchaseinformation.Show
End Sub
Private Sub rptpurchasepayment_Click()
rptpurchasepaymentdetails.Show
End Sub
Private Sub rptsales_Click()
rptsalesinformation.Show
End Sub
Private Sub rptwatch_Click()
rptwatchinformation.Show
End Sub
Private Sub trapurchaseinformation_Click()
frmPurchaseinf.Show
End Sub
Private Sub traPurchasepaymentdetails_Click()
frmPurchasepaymentdetails.Show
End Sub
Private Sub trasalesinformation_Click()
frmSalesinformation.Show
End Sub
Thank You