I'm trying to embed a pdf file in a Word document using the VBA equivalent of INSERT > OBJECT > ADOBE ACROBAT DOCUMENT, etc.

My code is this:
Selection.InlineShapes.AddOLEObject ClassType:="Acrobat.Document.DC", _
                FileName:="strFullPath & fileNm", LinkToFile:=False, DisplayAsIcon:=False
I'm getting error #4198.

I'm not sure what I can do to fix this.

Also, I don't know if there's an alternative to embedding as an InlineShapes?

Thanks.