Is it possible to have a handles clause that handles every control? For instance:
Private SUB Btn1_Click(BLAH) Handles BUTTON1
(Syntax may be incorrect)
What I want is an event handler that handles every button on the form
Private SUB Bnt1_Click(BLAH) Handles all buttons
WITHOUT Listing every control in the handles clause.
Possible?
Private SUB Btn1_Click(BLAH) Handles BUTTON1
(Syntax may be incorrect)
What I want is an event handler that handles every button on the form
Private SUB Bnt1_Click(BLAH) Handles all buttons
WITHOUT Listing every control in the handles clause.
Possible?