You could do either:
This one sets a style change so all heading 1's start a new page
ActiveDocument.Styles(wdStyleHeading1).ParagraphFo rmat.PageBreakBefore = True
This one just changes the first heading in the document
ActiveDocument.Range.GoTo(What:=wdGoToHeading, Which:=wdGoToFirst ).ParagraphFormat.PageBreakBefore = True
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
|