C
Chris Salcedo
I have a macro that one of the things it does is set the page size to
11x17.
This works great on HP printers (that support that size of course) but
there are some users that use a konica printer that uses tabloid
instead of 11x17. (same size, its just the printer driver recognizes
one and not the other)
to set one up would be
..PaperSize = xlPaper11x17
and for the other one it would be
..PaperSize = xlPaperTabloid
Now my question,
Is there a way that I can test first if the printer driver supports
Tabloid or 11x17??
something like
if ActiveSheet.PageSetup.PaperSize = xlPaper11x17 returns error then
ActiveSheet.PageSetup.PaperSize = xlPaperTabloid
Thanks
Chris
11x17.
This works great on HP printers (that support that size of course) but
there are some users that use a konica printer that uses tabloid
instead of 11x17. (same size, its just the printer driver recognizes
one and not the other)
to set one up would be
..PaperSize = xlPaper11x17
and for the other one it would be
..PaperSize = xlPaperTabloid
Now my question,
Is there a way that I can test first if the printer driver supports
Tabloid or 11x17??
something like
if ActiveSheet.PageSetup.PaperSize = xlPaper11x17 returns error then
ActiveSheet.PageSetup.PaperSize = xlPaperTabloid
Thanks
Chris