跳至主內容

搜尋

搜尋

Need every 5 the label was printed as a separator.

評論

1 條評論

  • Avatar
    Shotaro Ito

    Hello Vladimr - You could use Template function however in V10.0 template's condition is limited - so that's a bit complex.

    Add a separator template in primary templates, from Page setup > Templates.
    You can apply condition such as Print when a Named data source is true. Try..

    Text 1: Embedded data "1", data source name COUNTER, enable serialization with increment, serialized per copy, do not update after print.

    Text 2: VB Script, data source name SEPARATOR, Event control script

    OnIdenticalCopies

    If COUNTER MOD 5 = 0 Then 
      Value = True
    Else
      Value = False
    End If

    On Separator template's print condition, set when Named data source SEPARATOR is true.

    In latest BarTender 2016 you have condition such as Named data source value = 5 which makes much easier.

    0

登入寫評論。