Message 1 of 3
print plot A1 on Canon IPF820
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello guys,
I've written a small VBA macro to print/plot our standard format A4..A0.
All formats are OK except A1.
rotate 90° works but the remaining settings don't work:
If oSheet.Height >= oSheet.Width Then
oPM.Orientation = kPortraitOrientation
Else
oPM.Orientation = kLandscapeOrientation
End If
Case "A1"
oPM.Printer = "CanonIp820"
oPM.Rotate90Degrees = True
oPM.PaperSize = kPaperSizeA1
oPM.ScaleMode = kPrintBestFitScale
Has someone also experienced this "bug" ?
Without macro I can plot/print all formats without any issue.
Thanks for any advice.