Adding Page Numbers to One or More Sections of a Document : Document Header Footer « Word « VBA / Excel / Access / Word






Adding Page Numbers to One or More Sections of a Document

 
Sub AddPageNumbersToAllHeadersAndSections()
    Dim cHeader As HeaderFooter, cSection As Section
    With Documents("YourDoc.doc")
        For Each cSection In .Sections
            For Each cHeader In cSection.Headers
                cSection.Headers(wdHeaderFooterPrimary).PageNumbers _
                    .Add.PageNumberAlignment:= _
                    wdAlignPageNumberRight, FirstPage:=True
            Next cHeader
        Next cSection
    End With
End Sub

 








Related examples in the same category

1.Getting to the Header or Footer
2.Finding Out if a Section of a Document Has Page Numbers
3.Changing the Page Numbering for a Section
4.To add the chapter number to the page numbers, use heading numbering in your document, set the IncludeChapterNumber property to True, and specify the separator to use
5.Suppressing the Page Number for the First Page: set the ShowFirstPageNumber property for the appropriate HeaderFooter object in the appropriate section to False
6.Formatting Page Numbers
7.Select the PageNumber object and then apply formatting to it as you would any other selection
8.Creating "Page X of Y" Page Numbers
9.adds a new-page section to the active document, placing it before the second paragraph:
10.Removing Page Numbers from One or More Sections of a Document