Calling A Procedure
The procedure declaration only specifies how a procedure works -- must be given once
The procedure call says when, where and with what values the procedure will be performed (executed) -- given many places wherever affect is needed
Call convertC2F(38, degreesF) is a VB procedure call specifying the procedure to be executed (convertC2F) and the values to be used (38 is the C temperature input and degreesF is the variable for the result
The call says: “Just do it!”
Private Sub convertC2F (tempInC As Integer, tempInF As Integer)
tempInF = 9 * tempInC / 5 + 32