Printing numerous copies

Closed
mt - Mar 7, 2016 at 08:04 AM
 Blocked Profile - Mar 7, 2016 at 07:55 PM
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
Mar 7, 2016 at 07:55 PM
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!
0