Help

I have all these Imagesboxes that need to change picture
to different pictures almost constantly.

Is there a way that I can declare a variable to an
array of images like:
dim arImage(1 to 10) as image

and them in form_load populate this array with my pictures like
arImage.picture=loadpicture(app.path & "\myPicture.gif")

And whenever I need to change picture in my imagebox I simply
write:
mypicbox.picture=arimage(5)

I dont wanna use loadpicture when I change the pictures since I
have around 60+ imageboxes that need to change pictures at the same time.

Any Ideas?