Hi all,
I didn't try it myself, but if you have a hyperlink, this object has the property "Address".
If you add a bound object frame to your report, and set the OLE class to "Adobe Acrobat 8.0" (or your version) and set the source doc to the hyperlink address, it just might work.
here is a snippet code from the help files with an example how to set the properties of an object frame:
Code:
Sub Command1_Click
OLE1.Class = "Excel.Sheet"
' Set class name.
' Specify type of object.
OLE1.OLETypeAllowed = acOLELinked
' Specify source file.
OLE1.SourceDoc = "C:\Excel\Oletext.xls"
' Specify data to create link to.
OLE1.SourceItem = "R1C1:R5C5"
' Create linked object.
OLE1.Action = acOLECreateLink
' Adjust control size.
OLE1.SizeMode = acOLESizeZoom
End Sub
Hope you find something, and if so I'm very interested to know.
Success
NG