Mixed pages

P

Patrick C. Simonds

I am at a loss here. I have a document in which I want to have the first 2
pages be 81/2x11 and the last page to be a #10 envelope. I am able to get
the document created, but when it prints, it all prints on envelopes.

Any help would be appreciated.
 
G

Graham Mayor

Does it print normally if you add the envelope to the document using the
envelope tool, which would put it at the start of the document?

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
P

Patrick C. Simonds

I do not know. This document is filled through the use of VBA Textboxes.
 
G

Graham Mayor

Perhaps you could try adding an envelope to a document and then you would
know?
Does your saved document look correct if you use print preview?
Is this a mail merge? If it is then you need to merge to a new document and
print each section as a separate document. You'll need extra macro code for
that

Sub SplitMergeLetterToPrinter()
' splitter Macro
' Macro created 16-08-98 by Doug Robbins to print each letter created by a
' mailmerge as a separate file.
'
Letters = ActiveDocument.Sections.Count
Counter = 1
While Counter < Letters
ActiveDocument.PrintOut Background:=False, Range:=wdPrintFromTo, _
From:="s" & Format(Counter), To:="s" & Format(Counter)
Counter = Counter + 1
Wend
End Sub

The issue is not so much with your text boxes, but with page setup over the
various sections of the document and the ability of the printer driver to
see the changes.


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


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

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

Top