I was able to create an array of ImageViews using "Array As ImageView(...)", but when I try "Array As Label(...)", it gives me an error message (just says "error"). Is it not possible to create an array of labels.
Yes, but you need instances of the Label type to populate it.Is it not possible to create an array of labels.
Dim L(10) As Label
For i = 0 To L.Length
Dim LL As Label
Ll.Initialize("")
L(i) = LL
Next
Dim L2(0) As Label
L2 = Array As Label( L(0), L(1), L(2 ))
I thought fonts were automatically scaled for the different variants, or have I misunderstood something