M
Mike Yorke
Hi,
I have found this piece of code which will print each
section of a document as a seperate print job.
Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo,
From:="s" & i, To:="s" & i
Next i
This works fine except as soon as the macro is executed
the print job is sent to my default printer.
What would be excellent is to see the regular print
dialogue box so I can choose another printer if I wish.
Can the code be tweaked to include this option? Can
anyone help me get started with this?
Thanks for your time,
Mike.
I have found this piece of code which will print each
section of a document as a seperate print job.
Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo,
From:="s" & i, To:="s" & i
Next i
This works fine except as soon as the macro is executed
the print job is sent to my default printer.
What would be excellent is to see the regular print
dialogue box so I can choose another printer if I wish.
Can the code be tweaked to include this option? Can
anyone help me get started with this?
Thanks for your time,
Mike.