Printing numerous copies

Closed
mt - 7 Mar 2016 à 08:04
 Blocked Profile - 7 Mar 2016 à 19:55
Hello,
I have a seguential numbering macro that numbers a 2 part EWO - I want to be able to run more than 1 set at a time - how do I do that?


Related:

1 response

Blocked Profile
7 Mar 2016 à 19:55
It is called a for loop.....

dim n,x as integer
n=10
For x - 0 to n
DOCUMENT.PRINT;
next x

I hope this gives you some direction.

-note: this is not intended to be a solution, but a wire diagram of ONLY ONE example of how this could be accomplished. this is purely archaic, but is an example of programming logic!