07-17-2012 08:36 AM
Is there any documentation for the Word2000 library that underlies Wordreport? I can't find any. You can do some things with Wordreport, but if you want to fine-tune the document, e.g. paragraph or tab formatting, you have to use the Word2000 calls.
Solved! Go to Solution.
07-17-2012 09:04 AM
http://msdn.microsoft.com/en-us/library/aa164012%28v=office.10%29.aspx
any related to Word will in the end reference Microsoft's documentation
07-17-2012 09:31 AM
Thanks much.
09-10-2012 12:47 PM
That site is useless. Half of the links are broken, and there's no clear description of what functions calls are required to do various tasks.
09-11-2012 12:21 PM
Perhaps a better question is: are there any instructions as to how to map from the VBA calls, such as those shown by the Word Macro facility, to the appropriate Word2000 call? For instance, I'm trying to add a text box to a document. The ShapesAddTextBox function in Word2000 has a parameter "anchor" that doesn't appear in the VBA macro. I cannot for the life of me figure out what this is supposed to be.
It also too me quite a while to figure out how to map out the various handles. For instance, you first take the application and get the handle to the document; then you take the document and get a handle to the paragraphs object, then the handle to the particular paragraph property. This could be much better documented somewhere.