Getting embeded COM Word object from DSOFramer

L

ldima24

Hi!

Is it possible to get access to the embeded COM Word object in the
code of DSOFramer?

Thank You!
 
T

Tim masling

Hope this helps

Dim oDoc As Word.Document

AxFramerControl1.Open(Template)
AxFramerControl1.Toolbars = False
AxFramerControl1.Menubar = True
oDoc = CType(AxFramerControl1.ActiveDocument, _
Microsoft.Office.Interop.Word.Document)
 
Top