Your code first calls
Quote:
Originally Posted by rferrin34
ActiveDocument.ActiveWindow.PrintOut
|
which prints a full copy of the document. Then it calls
Quote:
Originally Posted by rferrin34
Dialogs(wdDialogFilePrint).Show
|
which prints a second copy. Finally it calls the only part you actually need
Quote:
Originally Posted by rferrin34
Sub Fileprint
ActiveDocument.ActiveWindow.PrintOut _
Range:=wdPrintFromTo, From:="2", To:="3"
End Sub
|