G Guest Jan 27, 2005 #1 Is there any advantage to using the Handles clause vs. using the AddHandler to map events?
C Chris, Master of All Things Insignificant Jan 27, 2005 #2 AddHandler can be used at runtime. That's the biggest one for me. There may be others. Chris
P Patrice Jan 28, 2005 #3 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
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