More Control
“Control statements” affect which statements in a program are executed
So far, If statements are the only control statement studied, though procedure calls and events also change the normal sequencing of statements
Programming concepts introduced today
- Select Case … like If it picks among alternatives
- For Next … allows operations to be repeated
- Do While and Do Until variations