Sub Statement

Defines a subroutine.

แƒกแƒ˜แƒœแƒขแƒแƒฅแƒกแƒ˜

Sub Name[(VarName1 [As Type][, VarName2 [As Type][,...]])]

statement block

End Sub

Parameters:

Name: Name of the subroutine.

VarName: Parameter that you want to pass to the subroutine.

Type: Type-declaration key word.

แƒ›แƒแƒ’แƒแƒšแƒ˜แƒ—แƒ˜:

Sub Example

    ' some statements

End Sub