Restart page numbering at section 1 only with VBA
I have a document that runs a script to set the intro pages (TOC, List of Figures, etc.) to use lowercase roman numerals. When I get to section 1, I am currently using PageNumbers.RestartNumberingAtSection and PageNumbers.StartingNumber = 1. However, when my script gets to a major section heading (single number vs. 1.2.3), the script uses Selection.InsertBreak Type:=wdSectionBreakNextPage, which is causing them to be new sections and thus restarts numbering back at 1, but I want it to continue numbering from the previous section. So, if Section 1 ends at page 7, I want Section 2 to start at page 8, instead of 1 like it is now. How do I, in VBA, allow succeeding pages simply continue with the numbering from the previous page?
Chris