[VBA]With Selection
.EndKey Unit:=wdStory
.InsertBreak Type:=wdSectionBreakNextPage
.InsertFile FileName:="C:\Documents and Settings\lorien\My Documents\zen.doc", Range:=""

End With

Dim oSec As Section
Dim sPrintCode As String


For Each oSec In ActiveDocument.Sections
sPrintCode = sPrintCode & oSec.Range.Information(wdActiveEndPageNumber) & ","
Next


sPrintCode = Left(sPrintCode, Len(sPrintCode) - 1)


ActivePrinter = "Jingo2"
Application.PrintOut FileName:="", Range:=wdPrintRangeOfPages, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:=sPrintCode, PageType:= _
wdPrintAllPages, ManualDuplexPrint:=False, Collate:=True, Background:= _
True, PrintToFile:=False, PrintZoomColumn:=0, PrintZoomRow:=0, _
PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0



End Sub[/VBA]

What it does basically is that it creates a new section in the document and adds zen.doc to the first page of the 2'nd section.

Now the trick is, how to implement something in this code in order to change the font, alignment, etc of the 2'nd section before the printing occurs, but without affecting the 1'st section and the content of it?

For example: default font and size is Arial 10 on both the main document and zen.doc. I need this code to run and change font to Arial 20 and only for the zen. doc, before the print. How to make changes that will affect everything on the section 2, but Nothing on the section 1 and to implement it within this code?

Thank you.