Creating a picture box array

  • Thread starter Thread starter Jeff Ciaccio
  • Start date Start date
J

Jeff Ciaccio

Is there some way to create a picture box as a member of an array? There is
no "index" property as in the VB 6 image control, and it will not let me
name it pictureBox(0)

Thanks
 
I forgot to ask this too. Will all the picture boxes on a form
automatically be a member of an array? I would like to be able to choose
them all and set them to not visible (to clear all the pictures from a
form).

For each pictureBox in (???)
.visible = false
Next
 
Back
Top