How to print multiple sets/batches of labels?
Question
How do you print multiple sets/batches of labels?
Applicable to
BarTender 2016
Answer
Option 1
You can use Batch Maker to accomplish this using the "Batch repeat count" option.
Option 2
You can use the RepeatCount parameter in the <Command> tag to do this in BTXML.
<?xml version="1.0"?>
<XMLScript Version="2.0">
<Command RepeatCount="3">
<Print>
<Format CloseAtEndOfJob="true" SaveAtEndOfJob="false">C:\testlabel\2-2.btw</Format>
<PrintSetup />
</Print>
</Command>
</XMLScript>