View Single Post
 
Old 02-10-2016, 07:01 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,138
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

The first page header will exist, even if empty, provided the different first page option is applied to the current section. I suspect what you want is to ensure the first page header has no content. In that case simply deleting the content of the header will achieve the aim of having an empty header e.g. as follows. I have added optional code to show if the header is empty.
Code:
Sub ClearHeader()
Dim secTemp As Section
Dim sectionNum As Integer
Dim oHeader As HeaderFooter
    sectionNum = Selection.Information(wdActiveEndSectionNumber)
    Set secTemp = ActiveDocument.Sections(sectionNum)

    If secTemp.Headers(wdHeaderFooterFirstPage).Exists = True Then
        Set oHeader = secTemp.Headers(wdHeaderFooterFirstPage)
        If Len(oHeader.Range) > 1 Then 'Optional
            oHeader.Range.Delete
        Else 'optional
            MsgBox "Header is empty" 'optional
        End If 'Optional
    End If
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote