Unbound, linked OLE opject in report

plantfinder

Registered User.
Local time
Today, 14:23
Joined
Sep 28, 2002
Messages
12
As I already have done in a form, I am trying to create an unbound object frame in a report to show photos for specific records. The photos are linked to the picture frame by a photo path field in the record. I have done this for a similar Form but when I attempt to do this in the report I get only the Image that is in the first record repeating throught the report even though the photo path field does indicate that it should reference a different photo. What am I doing wrong and is their a way to acheive this?

Thanks

Mike
 
Add a basic image frame to the detail section. Add your field that contains the photo path to the detail section of the report and change the properties to visible=no. In the properties of the detail section of the report, click on events and ON FORMAT, select event procedure and type the following code:

Me![ImageFrame].Picture = Me![PhotoPath]

use the names of your controls for your report inside the brackets.
 

Users who are viewing this thread

Back
Top Bottom