Hi Emory,
there is no continuous page break.
There is a continuous section break,
but that does not cause a page break.
If you are lucky, the following code might do what you want.
Try it on a copy of your doc.
Note, that the code does more
than you might be aware of at first.
It replaces all(!) breaks,
that is each character(12), by ordinary pagebreaks.
Sub Testx()
Dim rDcm As Range
Set rDcm = ActiveDocument.Range
With rDcm.Find
.Text = Chr(12)
While .Execute
rDcm.Delete
rDcm.InsertBreak Type:=wdPageBreak
Wend
End With
End Sub
For distinguishing between all kinds of breaks, see:
KindOfBreak12
http://tinyurl.com/ynwgnv
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"