Is there some easy way to determine if a control exists? The problem I have is that I create an array of controls (labels for example) that gets re-dim'd from time to time. Id like to be able to say, if MyLabel(35).Exists then do something.

I have been using;
If MyPanel.Contains(MyLabel(35)) Then do something

but this craps out if the index is not valid, even if I wrap it in a try/catch.