How do you program Microsoft Word 2003 for 250 words per page, 1 .

S

Shtara42

I need to know how to program Word for professional manuscript typing. Must
be 250 words per page with one inch margins all around and five digit
automatic indentations.

My version of Word is 2003.
 
A

Alok

Hi Shtara
You can use
ActiveDocument.Words.Count
ActiveDocument.Characters.Count
ActiveDocument.ActiveWindow.Panes(1).Pages.count
to count the words ,characters,pages in the document.
and
"Selection.Words.Count" to count the words in the selection only.
"ActiveDocument.PageSetup.LeftMargin=2"....
You can combine all these to handle the tasks in your own way .
"ActiveDocument.Paragraphs(1).LeftIndent = InchesToPoints(1)"
for indentation settings .
Hope this helps.

Alok
 
Top