jacque
When i put a picture in a report, i use the image control from the toolbox. I have a field in the table called picname to store the name of the picture. You could also store the pathname. < i do not store images in my database>. In the porperties of the image control change the Picture Type to Embedded.
Then i put this code in my report:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me![Picname] <> " " Then
Me!Image25.Picture = "C:\My Documents\database\images\" & Me![Picname] & ".jpg"
Else
Me!Image25.Picture = "C:\My Documents\database\images\Nopic.jpg"
End If
End Sub
You would have to change The image path to the correct folder holding your pictures, and the image type <ie jpg, gif ect. This particular code added a image if a picture was not available < the customer wanted to be sure there was not a picture but it just didnt print correctly> you could run code to suppress the extra page with image control if no pictures were found for that record
Hope this helps
Raven