Hi there,
I working on an App which has 10 buttons in a group, they are called Arrow 1 to Arrow 10. I need each Arrow Button to run a specific procedure called ArrowCheck when clicked. The easiest way would be to add the procedure to each button, but is there a tidier, less repetitive way to do this?
Depending on how many buttons you have in your app, it's likely that the when any Button.Click event will serve your purposes. If you have many other buttons than the arrows, or if you handle the Click events for the non-Arrow buttons, then you can either use the event directly or check the nonAlreadyHandled parameter to apply your behavior.