How do you change the Fillcolor of a Shape Array with code.
I try to use:
Shape1(0 - 5).FillColor = vbBlue
but it errors
Printable View
How do you change the Fillcolor of a Shape Array with code.
I try to use:
Shape1(0 - 5).FillColor = vbBlue
but it errors
For n% = 0 To 5
Shape1(n%).FillColor = vbBlue
Next n%