You are on page 1of 4

Procedures

Visual Basic .Net


Objectives
Types of Procedures
Types of Procedures
Event Driven
Fired when an action is taken against an object
on the GUI.
Types of Procedures
General Purpose Procedures
Fired when the procedure is called from
another procedure
The way of doing is use the Call Command with the
name of the procedure
I.E. Call ClearCustomer(where ClearCustomer is the
name of the procedure)
From here on out, just about 90% of all of the
procedures we will write for our applications will
be General Purpose Procedures
The purpose of these procedures is to help organize our
code and reduce redundancy.

You might also like