Quote Originally Posted by Tamgovb
Orginally posted by Bushmobile

yeah I agree with you...though sometimes you have not other exit
You always have another exit. Instead of
Code:
  If <condition> Then Goto Label
  'code
Label:
use
Code:
  If Not <condition> Then
    'code
  End If