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?
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?