I want to display .pdf files dynamically, such as images in a report, it should look like this:

I already tried using webbrowser, but then it does not appear in the preview or when I print the report ...
I also tried the ole unbound object, also without success, here is the code I had in the Report_Load event:
Dim vPath As String vPath = GetNewestDocument(Me!artNr) 'Returns path for pdf file, about:blank if there is no file. If vPath = "about:blank" Then Me!PDFBrowser.visible = True Me.PDFBrowser.SourceDoc = vbNullString Else With Me.PDFBrowser .OLETypeAllowed = acOLELinked .SourceDoc = vPath .SizeMode = acOLESizeStretch End With End If
EDIT:
With "I want to display dynamically ..." I wanted to change the pdf dynamically in the report.
EDIT 2:
I just found out that the OLEunbound object type is built-in, but I think this one should be connected as I read in other forums: 
When I try to change, it gives an error: "This property cannot be changed because it is read-only"
source share