Hi I have 60 picture boxes on a form, I want to update these images using a for loop. I have tried
Dim PCB as Image
For i = 1 to 60
PCB(i).Image = mySampleProject.My.Resources.TestPCB1
next
but get an error "Class 'System.Drawing.Image' cannot be indexed because it has no default property"
Does anyone have any idea how to solve this?
Thanks