I think JaredPar was on the right track, but a little more info is needed.
In essence, it kind of depends on how the resources are stored. (If you are looking to get the path of a resource, you will most likely have to look into reflection.)
If your images are embedded or content you can reference them directly:
-(Right Click Image in Visual Studio > Properties > Build Action = "Embedded Resource"
-(Right Click Image in Visual Studio > Properties > Build Action = "Content"; also ensure Copy To Output Directory = "Copy Always")
Dim imgPictures(8) As Image
imgPictures(0) = My.Resources.NameOfImage1
imgPictures(1) = My.Resources.NameOfImage2
...
If your images are just in a folder:
Dim imgPictures(8) As Image
imgPictures(0) = Bitmap.FromFile( <filename1> )
imgPictures(1) = Bitmap.FromFile( <filename2> )
...
Scott