hello,
I am using Word 2k and windows 2k. After completing a mailmerge, is it
possible to print the first page from tray 1 and the remaining pages
from tray 2?
TIA
Ket
Ram - 16 Feb 2004 20:43 GMT
Yes you can.
foreach (Word.Section mySection in
wrdDoc.MailMerge.Application.ActiveDocument.Sections)
{
mySection.PageSetup.FirstPageTray =
(Word.WdPaperTray)TrayLocation1;
mySection.PageSetup.OtherPagesTray =
(Word.WdPaperTray)TrayLocation2;
}
Look at Word.WdPaperTray.enums for more tray options and suit your
printer needs.
Ram
> hello,
>
[quoted text clipped - 5 lines]
>
> Ket