How to disable an event

  • Thread starter Thread starter Guest
  • Start date Start date
Lee said:
I'd like to disable an event handles. How to perform that?

Use RemoveHandler to remove an event handler from the event. The handler
won't be called the next time the event is raised. To attach it again, use
Addhandler.
 
Back
Top