Say you built a usercontrol....
and this user control creates a bunch of buttons on it with the names of strings contained in a collection....
So...
dim r as new usercontrol1(myStringCollection)
Now, for as many x amount of strings there are in this collection, you have x amount of buttons...
How would you pass the Click event of each dynamic created button back to the parent form of this usercontrol, to let it know a selection was made?
