|
Assign statement
Assigns variable, constant, or expression to variable or array item.
|
|
Dim statement
Used to declare and allocate storage space for variables and arrays.
|
|
Do...Loop
Repeats a block of statements while a condition is True or until the condition becomes True.
|
|
Exit statement
Exits a procedure or block and transfers control immediately to the statement following the procedure call or the block definition.
|
|
For...Next
Repeats a group of statements a specified number of times.
|
|
Function statement
Declares the name, arguments, and code that define a Function procedure.
|
|
GoTo statement
Branches unconditionally to a specified line within a procedure.
|
|
If...Then...Else statement
Conditionally executes a group of statements, depending on the value of an expression.
|
|
Return statement
Returns control to the code that called a Function procedure.
|
|
Select...Case statement
xecutes one of several groups of statements, depending on the value of an expression.
|
|
Stop statement
Stops execution.
|
|
Sub statement
Declares the name, arguments, and code that define a Sub procedure.
|
|
While...End While statement
Executes a series of statements as long as a given condition is 1 (True)
|
Copyright (c) 2000-2006 by Smartphoneware. All rights reserved.