What is the syntax for:
If
If [condition]
[statement if true]
End If
What is the syntax for:
If-Then-Else
If [condition] [statement if true] Else [statement if false] End If
What is the syntax for:
Switch
Select Case [boolean expression]
Case [condition-n]
[statements-n]
Exit Select
Case Else [condition-else]
[statement-else]
Exit Select
End SelectWhat is the syntax for:
For
For [variable] As [datatype] = [start value] To [end value] Step [number of steps]
[statement]
Exit For ‘ Stops executing the For statement
[statement]
Next [variable]