View Single Post
  #6   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default MS WORD NUMBERING

The 'False' on the 5th line has been prematurely wrapped and should be on
the fourth line
See http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



BrigadierBill wrote:
I pasted the code into the macros but it says there is a syntax error
in the 4th line.

Dim i As Long
With ActiveDocument
For i = 2 To .Sections.Count
.Sections(i).Footers(1).PageNumbers.RestartNumberi ngAtSection =
False
Next i
.Sections(1).Footers(1).PageNumbers.StartingNumber = 1
End With

What needs to be changed?

bill