question on how to insert pictures into reports

  • Thread starter Thread starter Gina
  • Start date Start date
G

Gina

I have an underlying table that has hyperlinks to a picture file. I am
creating a report based on this table. Instead of showing the hyperlink, I
would like to have a 3"x3" picture. Is there a way to do this that you know?

Thank you,
Gina
 
Add an Image control to the report.
After you add and save the image control, delete it's picture
property.
Code the Detail Section Format event (if the picture is in the detail
section):
Me!ImageName.Picture = Me![FieldName]
 
Back
Top