DLookup for OLE object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In the company information I have a place to add the logo. It is a bound OLE
object and works, but for some reason DLookup will not work in the report.
Is there a way to display the logo on the report by Dlookup or another method?
 
Yes, the best way to do this is to NOT put the images in an OLE field in the
table, but rather to use a path to the image file on the computer. Then use
an image control and in your query, add the field for path to the file. In
the on print event of the section that contains both the image control and
the text field with the path (which may be invisible) add code like this:

Me!MyImageControlName.Picutre = Me!MyTextBoxWithPathControlName.
 
Back
Top