Hi Basavaraj,
As far as I know there is no such book -- it would interest far too few
people to make the publication profitable.
The documentation, what there is of it, is mostly on the MSDN web site.
Start at http://msdn.microsoft.com/office/ and click the link to
"Understanding Office Development" in the left pane. The flyout menu will
lead you to articles about using Visual Studio to automate various Office
programs, including Word.
You'll find that most of the articles and code samples are in VB.Net and C#.
Usually you will have to do your own translation to C++, although
translating from C# to C++ shouldn't be very difficult.
The central idea is that, although you're using another language, you're
manipulating the same objects in the Word object model that are available in
VBA. This means you must be familiar with those objects, which are
documented in the VBA help; and you must understand how those object affect
Word documents -- something you must often discover by experimenting, as the
documentation doesn't cover a lot of the oddities.

Signature
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
> Hi All,
> Can anybody share their experiences abt any book about "Programming
[quoted text clipped - 7 lines]
>
> Basavaraj
Basavaraj - 21 Dec 2004 04:01 GMT
Hi Jay,
Thanks alot for your suggession.
Yeah, i understand that i have to translate in to the language that i want,
but a small problem is, i am using Com's Dispatch interfaces to invoke this
microsoft word
and its very often that i can not to the way VBA does it more wasily. Like,
if i want to set an attribute in a built in dialog of word, in VBA, its
simply, aDlg.Title = "MyTitle" but using Dispatch interfaces, i need
dispatch IDs for all such things . Thats why i was lil confused and i thought
there will be some book which can help me. Any how ,i am following that link
now, hope it helps me the things that i need.
In anycase, thank you very much for your suggession.
Regards,
-Basavaraj
> Hi Basavaraj,
>
[quoted text clipped - 29 lines]
> >
> > Basavaraj