ElseIf: Another Conditional Statement
The conditional statement (If-Then-Else) is the only way (so far) to control which statements are executed
In VB6, ElseIf solves the problem of testing a long sequence of alternatives
<statement list> Stmts for 1st cond
ElseIf <T/F condition> Then
<statement list> Stmts for 2nd cond
ElseIf <T/F condition> Then
<statement list> Stmts for 3rd cond
ElseIf <T/F condition> Then
<statement list> Stmts for 4th cond
<statement list> Stmts for otherwise