Flow Chart For Logon Process
Flow Chart For Logon Process
ON
CAFÉ SHARAZE
SUBMITTED TO
MR MANISH KUMAR
FACULTY
BY:
1.SUSHILA
KUMARI
2.DIPTI THAKUR
ACKNOWLEDGEMENT
1. SUSHILA KUMARI
2. DIPTI THAKUR
GRAPHICAL USER INTERFACE
Interface that use graphics is known as Graphical User Interface (GUI). This became
very popular because the user could identify the graphics displayed on the screen the
intended task. The primary requirement for an interface presented to us. This is
possible if the interface presented is such that it emulates real life.
The main reason why Visual Basic is so popular and powerful is the same reason behind the
success of window. Microsoft took a complex technology (writing computer program) and
made it easier to use through a graphical interface. Suppose have to write a program for your
company. In visual programming Environment, you can quickly design.
The windows that the users see by drawing arranging them just as you would lay out
elements for a newspaper. In text based programming system you control the User
Interface through program language command. The methods used in visual basic are
easier to learn & requires less time to maintain for newcomers. Another key concept
of Visual Basic is the ability to create & use self contained component & controls or
objects.
Controls are elements you can use when designing a user interface, just like the real
life controls on a car dashboard. These controls can be used to display information
(like a dashboard). The underlying operation of car such as relation between ignition,
starter & engine are the hidden from the driver, he communicates with the car
through a clearly define interface. In the same way Visual Basic controls enable you to
add features to your program without having to be invoked in details of how these
features work.
For receiving input from a user of your program is as simple as drawing a simple
control that accept input. This is a great advantage of visual programming – you can
concentrate on what you want your program to do not how to get the programming
language to do it.
ONE LANGUAGE, MANY EDITIONS
The Visual Basic Learning Edition is the introductory edition that lets you easily create
window application. It comes with all the tools you need to build maintain stream window
application.
The Visual Basic Professional Edition is for computer professionals to include advance
features such as tools to develop Active-X and Internet controls.
The Visual Basic Enterprise Edition is the most advance edition & is aimed at
programmer who builds & distributes application in a team environment.
DATABASE DESIGN
START
Enter
Password
No
If User Message:
Name and System could not logon.
password
valid
Yes
NAVIGATION
WINDOW
ACTIVE
END
FLOW CHART FOR ADD PROCESS
START
Yes
If field
Empty
Yes
No
END
FLOW CHART FOR SAVE PROCESS
START
Message: -
Enter All Data Field is empty
Yes
If field
Empty
Yes
No
END
FLOW CHART FOR DELETE PROCESS
START
Enter Item
Category
No
If Record
is found
Yes
Display Record
No
No
Message:
Do you
want to
delete
record?
Yes
END
FLOW CHART FOR MODIFY PROCESS
START
END
ZERO LEVEL DIAGRAM
PROCESS
1
MENU
PROCESS
2
ORDER
USER
PROCESS
3
BILL
PROCESS
4
TOTAL
COLLECT
PAYMENT
FLOW CHART FOR NEW PASSWORD
START
ENTER USER
NAME
ENTER OLD
PASSWORD
ENTER NEW
PASSWORD
ENTER
CONFORM
PASSWORD
NO
IF USER MESSAGE:
NAME& RE-ENTER NAME&
PASSWOR PASSWORD
D VALID
YES
END
SPLASH SCREEN
LOGON SCREEN
BILLING RECORD SCREEN
MENU SCREEN
ORDER SCREEN
SCREEN TO DISPLAY ORDER NO.
SCREEN TO DISPLAY BILL
SCREEN TO COLLECT PAYMENT
Coding for the proposed system
Option Explicit
Dim db As Database
Dim RS As Recordset
Private Sub Command1_Click()
Me.Top = 1500
End Sub
Code for MENU form
Dim db As Database
Dim RS As Recordset
Dim check As Integer
Private Sub cmdadd_Click()
check = 0
Combo2.Visible = False
Text2.Visible = True
Text1.SetFocus
End Sub
Dim db As Database
Dim RS As Recordset
Dim check As Integer
Dim STR As String
Private Sub cmdadd_Click()
check = 0
Combo2.Visible = True
Text2.Visible = True
Combo4.Text = ""
Combo1.Text = ""
Text5.Text = ""
Combo2.Text = ""
Combo3.Text = ""
Text2.Text = ""
Text4.Text = ""
Text3.Text = ""
Text6.Text = ""
TEXTORDERNO.Text = ""
Combo4.SetFocus
End Sub
Combo2.Text = ""
Combo3.Text = ""
Text2.Text = ""
Text4.Text = ""
Text3.Text = ""
Text6.Text = ""
End If
End Sub
Dim db As Database
Dim RS As Recordset
Dim TOTAL As Integer
Private Sub Command1_Click()
Dim BILL As Integer
Do While Not RS.EOF
BILL = BILL + RS(7)
RS.MoveNext
Loop
Text1.Text = BILL
End Sub
Text1.Text = TOTAL
Me.Height = 5460
Me.Width = 7800
Me.Left = 2000
Me.Top = 1500
End Sub
Dim db As Database
Dim RS As Recordset
Dim TOTAL As Integer
Dim db As Database
Dim RS As Recordset
Private Sub Command1_Click()
Set RS = db.OpenRecordset("SELECT * FROM PASSWORD")
RS.Edit
RS(0) = Text3.Text
RS(1) = Text4.Text
Form6.Show
End Sub
Dim db As Database
Dim RS As Recordset
Dim ST