using vbscript with word document

Associate
Joined
5 Dec 2002
Posts
141
Help.
I'm using a word document from a VBSCRIPT which is fine.
and I can insert text using objSelection.TypeText which is fine.
Is there a way to format the text to centre across the page. as in
<centre>text<centre>
its probably something like objselection.centre
but I can't seem to do it.

the following is some of the code I have been using which works but I need it centered.

objSelection.Font.Bold = True
objSelection.TypeText "Telephone Log Summary Report"
objSelection.TypeParagraph()
objSelection.TypeText "---------------------------"
objSelection.TypeParagraph()

Any help would be appreciated and if you can point me to a good site would be brilliant.
 
Back
Top Bottom