Hello
I need to modify an old program, which creates a .doc file, using the model
"word.basic" (MS Word 95) instead of "word.application" But I can't find the
properties or methods of that model. Today, the program is very simple and
only inserts text:
oWord = CreateObject("Word.Basic")
...
...
oWord.Insert("Text......")
But what I need is to align that text (Left, Center, Right, Justify) and
make some other changes
Thanks
Jay Freedman - 22 May 2006 22:29 GMT
Hi Pablo,
You can download the Word 95 WordBasic help from
http://www.microsoft.com/downloads/release.asp?ReleaseID=26572.
If the program is actually going to run on a later version of Word, it would
be better to rewrite the program to use VBA.

Signature
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
> Hello
> I need to modify an old program, which creates a .doc file, using the
[quoted text clipped - 11 lines]
>
> Thanks