A
Addy
I have tried using this in a macro to print to a canon photocopier but it
isn't working correctly. It is splitting my first page and putting half on
the top, a gap and the other half of the page on the bottom. My code looks
like this. Can anyone help
Cheers
Addy
Private Sub CBO2PS_Click()
If CBO2PS.Value = True Then
ActivePrinter = "\\rother\CanonMF13"
With ActiveDocument.PageSetup
.PaperSize = wdPaperA4
.Orientation = wdOrientLandscape
.TwoPagesOnOne = True
End With
ActiveDocument.PrintOut Copies:=CBO2PS.Value
With ActiveDocument.PageSetup
.PaperSize = wdPaperA4
.Orientation = wdOrientPortrait
.TwoPagesOnOne = False
End With
ActivePrinter = "\\rother\lex1340"
Else
ActivePrinter = "\\rother\lex1435"
End If
End Sub
isn't working correctly. It is splitting my first page and putting half on
the top, a gap and the other half of the page on the bottom. My code looks
like this. Can anyone help
Cheers
Addy
Private Sub CBO2PS_Click()
If CBO2PS.Value = True Then
ActivePrinter = "\\rother\CanonMF13"
With ActiveDocument.PageSetup
.PaperSize = wdPaperA4
.Orientation = wdOrientLandscape
.TwoPagesOnOne = True
End With
ActiveDocument.PrintOut Copies:=CBO2PS.Value
With ActiveDocument.PageSetup
.PaperSize = wdPaperA4
.Orientation = wdOrientPortrait
.TwoPagesOnOne = False
End With
ActivePrinter = "\\rother\lex1340"
Else
ActivePrinter = "\\rother\lex1435"
End If
End Sub