Good morning loungers
I am trying to loop through a document selecting ranges defined by nextpage section breaks.
It seems to me that the -NP- and -C- break types both report character 12 as shown by this loop.
Sub test_sectnBrk()
For Each oSectn In ActiveDocument.Sections
oSectn.Range.Select
Selection.Collapse Direction:=wdCollapseEnd
Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
oSlctd = Selection.Range
MsgBox (oSlctd)
Next
End Sub
The Word.WdBreakType.wdSectionBreakNextPage constant = 2. How do I pick this up ?
What am I missing ?
Thanks in advance.
Geof