I am creating multiple labels during runtime and giving them specific names. How do I use these names to access the values related to each label.
For instance, I create 20 labels entitled Player##, where ## is a number from 00 through 99. I then want to change the Visible or Enabled properties of these labels that have names, preferably by doing something along the lines of ("Player"+playernum).Visible=true. Is there anyway to do this simply I can use arrays and the like, but would rather not have to search through an array every time I want to access this component since it has a name assigned to it.