View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Creating a Template with a Separator Page

There are several ways to do this. One would be to create the page in a
separate document or as an autotext entry and insert it, another would be to
insert a separator page with a macro - at its simplest:

With Selection
.InsertBreak Type:=wdSectionBreakNextPage
.TypeText Text:="This is the text on the separator page"
.InsertBreak Type:=wdSectionBreakNextPage
End With

I suspect the easiest may be to create the page with a new page section
break start and finish and save that as an autotext entry, then put a button
on a toolbar to insert the page as required
--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Rebecca wrote:
I have created a document template with a title page and a second
page. The client also wants a separator page that would be used as
needed. Is this possible, and if so, how?? What's another option if
not?