| A | B |
| Last line of a "Select Case" | End Select |
| Last line of a multi-line "If...Then" | End If |
| Value of "False" | 0 |
| Value of "True" | -1 (or nonzero) |
| "Do Until" loop is basically the same as ... | Do While Not |
| To exit a "For...Next" Loop, use | Exit For |
| Allows uppercase and lowercase letters to compare equally | Option Compare Text |
| Not equal to | <> |
| If Timer1.Enabled Then... | If Timer1.Enabled = True Then... |
| To exit a "Do While" Loop | Exit Do |
| greater than or equal to | >= |
| "Like" | a conditional operator e.g. "Vis*" Like "Visual Basic is Fun" |