Access OLE Object Field

M

mert

Through VBA, I am trying to read an OLE Object field (which are images) and
insert it into a Word document. I can read the item as Datatype OLEFormat,
but can't figure out how to get it into the word document. I tried using a
bookmark with the format:
Set wrdsig =
..Bookmarks("sig").Range.InlineShapes.AddPicture(FileName:=NuisQuery!sig,
LinkToFile:=False, SaveWithDocument:=True)

but it wants an actual filename for the Filename property of the AddPicture
object.

Any help would be appreciated.
 
Top