I already had the labels set up in Designer and loaded the layout, but in looking at your code, I saw my mistake.
In Sub Global where I Dimmed the labels in the layout, I followed that with
Dim Labels as Label
instead of
Dim Labels() as Label
I fixed it and it works. Thanks.
I need to make an array of 50+ Labels and Buttons because of not being able to set different font sizes for the same Views in different Variants, so I'll have to change them programmatically, unless you can think of something I'm doing wrong in Designer.