Well you can't really disable code, but you kan keep it from running by setting some variable flag to True or False.
VB Code:
  1. If blnRunThis = True Then
  2.    '...run this code
  3. End If