Addressing Mutliple pictureboxes
my problem is this i have 5 (indexed) pictureboxesand need to load a background image into each one i use to use this method in vb6
Private sub Picload()
For a = 1 to 5
index = a
picturebox(index).image = imagelist(1).image
next a
End Sub
now this dose not work as when you copy a control it no longer asks you if you want a indexed control is there any way around this.
and help would be greatly appreciated