Appendix E. Control Statements
Control statements tell an application which other statements to execute under a particular set of circumstances.
The two main categories of control statements are decision statements and looping statements. The following sections describe the decision and looping statements provided by Visual Basic .NET.
DECISION STATEMENTS
A decision statement represents a branch in the program. It marks a place where the program can execute one set of statements or another or possibly no statements at all. These include If, Choose, and Select Case statements.
Single-Line If Then
A single-line If Then statement tests a condition and, if the condition is true, executes a piece of code. The code may include more than one simple statement separated by a colon.
Optional Else If clauses let the program evaluate other conditions and execute corresponding pieces of code. A final optional Else clause lets the program execute a piece of code if none of the previous conditions is true.
The syntax is as follows:
IfconditionThenstatementIfconditionThenstatement1Elsestatement2Ifcondition1Thenstatement1Else Ifcondition2Thenstatement2_ Elsestatement3IfconditionThenstatement1:statement2IfconditionThenstatement1:statement2Elsestatement3:statement4
Complicated single-line If Then statements can be confusing and difficult to read, so I recommend using the multiline versions if the statement includes an Else clause or executes more than one statement.
Multiline ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access