I want several instructions to take place in order and all starting from one Command1_Click().

Example:

Command1_Click()
Instruction1
Instruction2
Instruction3
End Sub

Only when I do this, "Instruction1", "Instruction2", and "Instruction3" are not executing in order, instead they seem to be happening all at once. How should I code this, to make each instruction hapen in exact order?

P.S. I also used:
IF a or b or c or d or e or f Then
Instructions
End IF

What would be a more efficient way to write this? Would it be:
If a to f then
Instructions
End If

Thanks,
Daniel Christie