I have a list of buttons in VB2010.

What is the best way to assign a function to their click event.

So every button has the same function, e.g.:

 On Button Click
      FireFunction(1)
 End On Button Click

Without having to add a click event for every button.

The goal is to produce something similar to what is done with the Control Array idea in Visual Basic 2006.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Define a click function as in: http://visualbasic.about.com/od/learnvbnet/a/eventhandler.htm and react based on Sender. There may be a cleaner way to setup delegates in VB.NET, but I use it not.

link|improve this answer
Works perfectly, thanks! – jSherz Oct 10 '10 at 9:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.