color of shape
how can i do this:
myshape.color = red
i need that in the start of the execaution the color will be red
thanks
[122 byte] By [
q8z] at [2007-11-11 8:38:40]

# 1 Re: color of shape
Private Sub Form_Load()
myshape.FillStyle = 0 'Solid
myshape.FillColor = vbRed
'or
myshape.BackColor = vbRed
End Sub