You'll need a macro. [URL="http://www.gmayor.com/fax_from_word.htm"]http://www.gmayor.com/fax_from_word.htm[/URL] demonstrates
how to switch printers and trays you need to add the extra code to print the
sections - something like
Dim sPrinter As String
sPrinter = ActivePrinter
ActivePrinter = "Printer name 1"
Application.PrintOut FileName:="", Range:=wdPrintRangeOfPages, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="s1"
ActivePrinter = "Printer name 2"
Application.PrintOut FileName:="", Range:=wdPrintRangeOfPages, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="s2"
ActivePrinter = sPrinter
>> Stay informed about: How can I print different sections of the one Word documen..