Is there any advantage to using the Handles clause vs. using the AddHandler
to map events?
Chris, Master of All Things Insignificant - 27 Jan 2005 20:29 GMT
AddHandler can be used at runtime. That's the biggest one for me. There
may be others.
Chris
> Is there any advantage to using the Handles clause vs. using the
> AddHandler
> to map events?
Patrice - 28 Jan 2005 09:25 GMT
This is just different.
Handles is a way to declare that a sub handles a particular events (you can
also have multiple references in the handles clauses).
AddHandler does this at runtime.
I'm using both depending on the situation...
Patrice

Signature
> Is there any advantage to using the Handles clause vs. using the AddHandler
> to map events?