<< 向前        下一页 >>

ID : 9084

Sub...End Sub

Function

To declare the Sub procedure.

Syntax

Sub procedure name[(argument)]
	 'Statements
End Sub

Guaranteed entry

Procedure name
Designate a procedure name. Each name must be specified in accordance with the 命名规则.
Argument
Declare an argument of the procedure. Declare each local variable in accordance with naming convention. More than one variable can be designated by separating each by a comma.

Description

The Sub procedure is declared.

Related Terms

Function...End Function

Attention

-

Example

-

ID : 9084

<< 向前        下一页 >>