Creating a Template with a Separator Page

  • Thread starter Thread starter Rebecca
  • Start date Start date
R

Rebecca

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?
 
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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top