VB Code:
  1. if condition then
  2.      ...
  3. end if
VB Code:
  1. if not condition then
  2.      exit sub
  3. end if
  4.  
  5. ...

Which of these 2 should we generally use? I don't know if it's just a matter of taste of using exit or not, but I like using it, although the code looks kind of messy if someone else reads it. Is there anything wrong about this?