Insert OLE Object?

R

rjlohan

Hi,

I need a way to insert an OLE Object into a Word doc using VBA. Does
anyone know how I can do this?

I'm basically looking to duplicate Word's Inert->Object dialog.

I know about the InsertFile method, which I believe provides the
functionality of the Insert->File menu. IS there a different mechanism
to insert an OLE Object?

Cheers,
Ryan
 
C

Chad DeMeyer

Ryan,

Look up:
InlineShapes.Add(arguments) and
Shapes.Add(arguments)

Regards,
Chad
 
Top