I have a question on how to select a checkbox from multiple checkboxes in a panel. I have searched the forums but haven't found the answer yet so if someone can post a link or help I would appreciate it. I'll try to simplify my problem as best as possible..... Say I have 10 checkboxes in a panel (named Panel1). Each checkbox follows a naming pattern such as 'abc1abc' where the number in the middle is different between each checkbox, from 1 to 10, so the last checkbox is named abc10abc. Each checkbox has its tag set to the same number in the name, so the second checkbox is 'abc2abc' and has tag 2, and so on. I want to disable one or more of those checkboxes based on a value found in a global array, say Starter.DisableBox(10) As String. I can cycle through the array and if the letter Y is found then I want to disable the corresponding checkbox. So if Starter.DisableBox(4) has value Y in it, how do I select the abc4abc checkbox to disable it? I'm sure it's not hard, I just can't figure out the answer yet. Any help would be appreciated.