Hey don't be too hard on the guy. I used to have pages in large documents like this when I worked for insurance companies. Pages in these documents become their own entities and repagination would cause chaos. What we always did to add a page in those situations would be to add page 3A or something.
Word doesn't have a page object you can loop. What you could do is to loop through paragraphs and check for your page pattern... Forgive me I'm typing from memory and this is pseudocode.
Code:
Sub LoopParagraphs
Dim p as Paragraph
For each p in Activedocument.Paragraphs
If p.Range.Text Like "my pattern" Then
'Increment text in here
End If
Next
End Sub
Sorry I can't be more specific right now not enough time.