Anatomy Of A Procedure
Procedures have the following features
- Name, a brief description of operation performed
- Parameters, variables used for passing input in, output out
- Body, the statements that perform the desired computation
The VB6 procedure to convert Celsius to Fahrenheit
- Name is C2F
- Parameter -- both input and output -- temp
- Body is standard conversion equation
- Blue -- key words and
and symbols that are
required
Private Sub C2F ( temp As Integer)