Ms Word 2007 Cover Page Templates

Ms Word 2007 Cover Page Templates

Of course, you're not limited to the cover pages included with Word. You can customize the pre-installed designs. You can also save your own cover pages in the Cover Page gallery.

How To Create Cover Page Design Instantly Using Microsoft WordAdd Custom Cover Page In Word Microsoft Office Easy StepsCover Pages To Go Word 2007. One of the nicest features of Microsoft Word 2007 is the Cover Page. 'An Easy Guide for Inserting a Cover Page in Word 2007.' Use Word for Mac Templates to.

Free Resume Templates For Microsoft Word On Office.com.

Inserting a Cover Page To insert a cover page, follow these steps: • Click the Insert Ribbon. • In the Pages Section, click Cover Page. • In the Cover Page gallery, select a design that you like. The cover page will be inserted at the beginning of your document. The Drawing Tools Ribbon will open to allow you to customize the look of the cover page.

Saving a Cover Page to the Cover Page Gallery If you would like to save your cover page for later use, follow these steps: • Select your entire cover page in the Word window. • Click the Insert Ribbon. • In the Pages Section, click Cover Page.

• Click Save Selection to Cover Page Gallery. Removing a Cover Page From Your Document You can also remove a cover page if you want to insert a different one or if you decide you don't want a cover page at all. Marshall, James. 'An Easy Guide for Inserting a Cover Page in Word 2007.'

ThoughtCo, Jan. 17, 2018, thoughtco.com/inserting-a-cover-page-word-20. Marshall, James. (2018, January 17). An Easy Guide for Inserting a Cover Page in Word 2007. Retrieved from Marshall, James. 'An Easy Guide for Inserting a Cover Page in Word 2007.'

(accessed February 10, 2018).

There are three header/footers associated with each section of the document (some of which are dependant on others). The macro I provided assumed a single section document with a different first page header.

If you want the same footer in both the first page and the subsequent pages you would have to apply it to both footers. Using the previous macro as an example, that means setting the two relavant footer ranges and applying the same content to both eg Set oRng =.Sections(1).Footers(wdHeaderFooterFirstPage). Convert Shockwave File To Flash. Range.AttachedTemplate.BuildingBlockEntries('PageFooter'). _ Insert Where:=oRng, RichText:=True Set oRng =.Sections(1).Footers(wdHeaderFooterPrimary).Range.AttachedTemplate.BuildingBlockEntries('PageFooter'). _ Insert Where:=oRng, RichText:=True Obviously you would need to insert the appropriate footer building block entry name(s).

I assume that you have some means of identifying which type. In the following example I have provided an input box as a means to determining the document type (which is the simplest method to reproduce here) with three possible choices. The choise sets the name of the building block and the modified code from above inserts the appropriate footer building block. Dim oRng As Range Dim sPageFooter As String Dim sType As String sType = InputBox('Enter number of document type' & vbCr & _ '1 - Letter' & vbCr & '2 - Memo' & vbCr & '3 - Fax', 'Document Type', 1) Select Case sType Case Is = 1 sPageFooter = 'LetterFooterBB' Case Is = 2 sPageFooter = 'MemoFooterBB' Case Is = 3 sPageFooter = 'FaxFooterBB' Case Else Exit Sub End Select With ActiveDocument Set oRng =.Sections(1).Footers(wdHeaderFooterFirstPage).Range.AttachedTemplate.BuildingBlockEntries(sPageFooter). _ Insert Where:=oRng, RichText:=True Set oRng =.Sections(1).Footers(wdHeaderFooterPrimary).Range.AttachedTemplate.BuildingBlockEntries(sPageFooter). _ Insert Where:=oRng, RichText:=True End With wrote in message news:*** Email address is removed for privacy ***. Creating separate templates would indeed be the easiest way.

But then I would end up with 16 templates (4 types in 4 languages) which makes it more complex. So being able to condense it into 4 templates would be great. I'm not sure to completely understand the code you provided. In my actual setup of the template, the first page header and footer are inserted when selecting the site (code you provided for my 1st question). The header on the second page depends on the document type.

The footer is the same for the whole document. Can I just skip that part? Set oRng =.Sections(1).Headers(wdHeaderFooterFirstPage).Range.AttachedTemplate.BuildingBlockEntries('FirstPageHeader'). _ Insert Where:=oRng, RichText:=True How do I tell Word to use the same footer as used on the first page. Many thanks in advance. Graham Mayor - Word MVP Posted via the Communities Bridge Graham Mayor (Microsoft Word MVP) For more Word tips and downloads visit my web site http://www.gmayor.com/Word_pages.htm. It would make more sense to create separate templates for each task, each with their appropriate header/footers pre-applied as required.

Then create a new document from the appropriate template. If you want to build the document type on the fly, then depending on the header/footer you insert on the first page, you could insert header/footers as appropriate for the subsequent pages. The code is similar to that you requested earlier, except that you now need to set the ranges to the primary header/footers and apply your header/footer building blocks according to the document type Dim oRng As Range With ActiveDocument If.Sections(1).PageSetup.DifferentFirstPageHeaderFooter = 0 Then.Sections(1).PageSetup.DifferentFirstPageHeaderFooter = True End If Set oRng =.Sections(1).Headers(wdHeaderFooterFirstPage).Range.AttachedTemplate.BuildingBlockEntries('FirstPageHeader').

Comments are closed.