Thread: Mixed pages
View Single Post
  #4   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Mixed pages

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

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




Patrick C. Simonds wrote:
I do not know. This document is filled through the use of VBA
Textboxes.

"Graham Mayor" wrote in message
...
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

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



Patrick C. Simonds wrote:
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.