I'm trying to search for a page break (a regular page break) in a Word doc through VBA. I have the code to search for a next page break (shown below) it's "^b", but this skips over regular page breaks. Does anyone know the text to search for regular page breaks?
With Selection.Find
.Text = "^b"
.Wrap = wdFindContinue
End With
Selection.Find.Execute
With Selection.Find
.Text = "^b"
.Wrap = wdFindContinue
End With
Selection.Find.Execute