| A | B |
| One-Way Decision Structure Statements | If...Then...End if |
| Two-Way Decision Structure Statements | If...Then....Else....End IF |
| Logical Operators | Used to combine two or more comparisons |
| Conditional Operators | Used to compare two values. |
| This is the Not Equal To Relational Operator | <> |
| This is an example of a Logical Operator | AND |
| Must be used if you want to put conditional operators in a Case | IS |
| Possible value properties of a check box | 0 or 1 |
| Possible value properties of an option button | true or false |
| Form Load Event | Event that runs before the user can do anything |
| Caption Property | Puts the words beside check boxes & option buttons on the screeen. |
| Frame | A container for other controls - that groups them together. |
| Boolean Variable | type of variable that can be only true or false. |
| What all if statements must end with | END IF |
| What all Select Case structures must end with | END SELECT |
| Multi-Way Decisin Structure statements | Select Case & End Select |
| Nested If Statement | An If statement inside another If statement. |
| One-Way selection structure definition | A program structure in which an action is taken if the condition is met, nothing happens if the condition is not met. |
| Two-Way selection structure definition | A program structure in which one block of code is executed if a condition is true and another block of code is executed if the condition is false. |
| Case Else | The default case in a Select case structure. |