No Built-in Document Properties

P

Phil

I develop in VC++ and use the MSWORD.OLB to create a set of classes that allow me to interface with word, the same way most people do in VBA, I would guess. However, when I generate the classes using ClassWizard, there does not appear to be a class for the Built-in document Properties. Ther is a method in the Application property to obtain a pointer to that class, but there doesn't seem to be a class created by Class Wizard for that class. Can anyone tell me how to obtain it

Thanks

Phil
 
T

Tom Winter

Phil said:
I develop in VC++ and use the MSWORD.OLB to create a set of classes that
allow me to interface with word, the same way most people do in VBA, I would
guess. However, when I generate the classes using ClassWizard, there does
not appear to be a class for the Built-in document Properties. Ther is a
method in the Application property to obtain a pointer to that class, but
there doesn't seem to be a class created by Class Wizard for that class.
Can anyone tell me how to obtain it?
Thanks,

Phil

My guess is that class is defines in the office type library, which I
believe is MSO.DLL (not entirely sure on that!). The classes that are common
to ALL office apps (like CommandBars) are defined here.

-Tom
 
Top