embed/link OLEObject(pdf,doc,xls) in report

S

steri

I need to crate a report containing all documents belonging to the
links I have stored in a table.

First I created a form that works fine, but within the report I can't
set the enabled property that is necessary for embedding it(error
message: 'expression has invalid reference to property enabled').

Here's the code:

Function setImagePath()
Dim strImagePath As String
strImagePath = Me.txtImageName
Me.Imageframe.Enabled = True
Me.Imageframe.Locked = False
' Specify type of object.
Me.Imageframe.Class = "AcroExch.Document.7"
' Specify source file.
Me.Imageframe.SourceDoc = strImagePath
Me.Imageframe.OLETypeAllowed = acOLEEmbedded
' Embed object
Me.Imageframe.Action = acOLECreateEmbed
' Adjust control size.
Me.Imageframe.SizeMode = acOLESizeZoom
End Function

How is it possible to avoid this problem?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top