Review Procedures
There are two “sides” to procedures:
- The “declaration” is where one defines the procedure’s behavior
Private Sub sampleProc (firstParam As Integer)
<code for the procedure’s operation goes here>
End Sub
- The “call” is where one directs that the procedure be performed
...
Call sampleProc(someValue + anotherValue)
...
Procedures save work … define a procedure’s operation once, and use it wherever it is needed