To show how cool the new image control is, here is something you may want to consider.
So assume you are able to populate a table of paths to pictures that relate to a parent table. In this case there are three images related to record 1 of the parent and 2 related to parent record 2.
path parentID
C:\a.jpg 1
C:\b.jpg 1
C:\c.jpg 1
C:\D.jpg 2
C:\E.Jpg 2
1) Build a continous subform of the images using a bound image control with a source of the field "path"
2) Put this on the main form linked by ParentID
3) On the main form also put an image control. Call it "imgOne"
4) Add this code to the subform
Private Sub Form_Current()
Me.Parent.imgOne.Picture = Me.path
End Sub
Now when you change a record on the main form it shows all the related images in the subform. When you click on a subform images it shows a larger image on the main form of the selected image.
Doing this prior to 2007 would have been extremely difficult. Now it happens with one line of code. Pretty cool.