I have a couple of subroutines that all handle the same event for many controls. Is it possible to predict or force the way the program accesses each subroutine when the event is fired?

i.e.

VB Code:
  1. Private Sub Sub1(...) Handles Button1.Click
  2. ...
  3.  
  4. Private Sub Sub2(...) Handles Button1.Click
  5. ...
  6.  
  7. Private Sub Sub3(...) Handles Button1.Click
  8. ...