ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How do I print faster? (https://www.excelbanter.com/excel-discussion-misc-queries/240127-how-do-i-print-faster.html)

vito

How do I print faster?
 
Hi! I made a VBA macro which print out copies of diffrent pages. The number
of copies is decided in a cell. The code is activeworksheets.printout
copies:=value
This works but the printer prints out the pages one by one instead of in one
flow.
Is there anyone knowing how I can make the printer print the pages in one
flow?

Jacob Skaria

How do I print faster?
 

Dim intCopies As Integer
intCopies = Range("A1")
For intTemp = 1 To intCopies
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Next

If this post helps click Yes
---------------
Jacob Skaria


"vito" wrote:

Hi! I made a VBA macro which print out copies of diffrent pages. The number
of copies is decided in a cell. The code is activeworksheets.printout
copies:=value
This works but the printer prints out the pages one by one instead of in one
flow.
Is there anyone knowing how I can make the printer print the pages in one
flow?


vito

How do I print faster?
 
Thank you for answer but I think that the loop will make one copy at the time.
What I want is to send one file to the printer so that the printer prints
all copies at the same time.
Now it prints one copy than it wait a moment then comes the next copy and so
on.

"Jacob Skaria" skrev:


Dim intCopies As Integer
intCopies = Range("A1")
For intTemp = 1 To intCopies
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Next

If this post helps click Yes
---------------
Jacob Skaria


"vito" wrote:

Hi! I made a VBA macro which print out copies of diffrent pages. The number
of copies is decided in a cell. The code is activeworksheets.printout
copies:=value
This works but the printer prints out the pages one by one instead of in one
flow.
Is there anyone knowing how I can make the printer print the pages in one
flow?


Bob I

How do I print faster?
 
Is your printer capable of doing that?

vito wrote:

Thank you for answer but I think that the loop will make one copy at the time.
What I want is to send one file to the printer so that the printer prints
all copies at the same time.
Now it prints one copy than it wait a moment then comes the next copy and so
on.

"Jacob Skaria" skrev:


Dim intCopies As Integer
intCopies = Range("A1")
For intTemp = 1 To intCopies
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Next

If this post helps click Yes
---------------
Jacob Skaria


"vito" wrote:


Hi! I made a VBA macro which print out copies of diffrent pages. The number
of copies is decided in a cell. The code is activeworksheets.printout
copies:=value
This works but the printer prints out the pages one by one instead of in one
flow.
Is there anyone knowing how I can make the printer print the pages in one
flow?




All times are GMT +1. The time now is 06:41 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com