Populating an OLE table field using vba

G

guyinla05

Does anyone know how to programatically insert a Word document into an
OLE field in an Access database. Specifically, I am trying to populate
an Access table, not a form.

Any help is greatly appreciated.
 
J

John Nurick

Hi Guy,

Do you want to store the contents of .doc files in the OLE field, or do
you want to embed Word documents in it?

If the former, look up AppendChunk and GetChunk in Help; if the latter,
the official way is to automate a BoundObjectFrame on a form. See e.g.
http://support.microsoft.com/kb/209990
 
Top