I have made about 100 buttons during runtime, each with a different name and all with tags - some with similar tags, and I have made them all invisible.
On the click event of another button (controlling) I wish to make some of these 100 buttons visible depending on their tag.
When I click the controlling button, I catch its click event, and now I have to find all these other buttons with a certain tag - say 1 - to make them visible.
How to I iterate through all these buttons to find the buttons with this tag.
Like in
On the button click of button btnControlling
Search all these buttons with different names for those which have a tag of 1
Make them visible
Thanks
On the click event of another button (controlling) I wish to make some of these 100 buttons visible depending on their tag.
When I click the controlling button, I catch its click event, and now I have to find all these other buttons with a certain tag - say 1 - to make them visible.
How to I iterate through all these buttons to find the buttons with this tag.
Like in
On the button click of button btnControlling
Search all these buttons with different names for those which have a tag of 1
Make them visible
Thanks