C Cor Jan 20, 2004 #2 Hi Lee, Have a look at "removehandler" http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbls7/html/vblrfvbspec8_6_2.asp I hope this helps? Cor
Hi Lee, Have a look at "removehandler" http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbls7/html/vblrfvbspec8_6_2.asp I hope this helps? Cor
A Armin Zingler Jan 20, 2004 #3 Lee said: I'd like to disable an event handles. How to perform that? Click to expand... 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.
Lee said: I'd like to disable an event handles. How to perform that? Click to expand... 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.