I created a control array of 32 picturebox.But when the borderstyle is changed during design time to 0 (None),the border of the first picturebox [picture1(0)]remains whereas the border of the remaining picturebox [picture1(1) to picture(31)] gets cleared. How do I remove it?
Dim x as Integer
For x = 0 to 31
picture1(x).BorderStyle = 0
Next x