Zum Hauptinhalt gehen

Suche

Suche

Printing Registration Mark

Kommentare

1 Kommentar

  • Avatar
    Ian Cummings
    Moderator

    Just to confirm: In your example, you wish to print a particular label object or data source for each and every even number of labels.

     

    As my example you could create an object with an event based VB script.  Define a common varaible in the "Functions and Subs" section with something like: Dim varSnValue.  In the "OnPrintStart" section initialize the variable: varSnValue = 1.  And then in the "OnIdenticalCopies" section use something like the below conditional statement followed up by an increment on the counter:

     

    If varSnValue Mod 2 Then
        value = varSnValue & " - Odd"
    Else
        value = varSnValue & " - Even"
    End If
    varSnValue = varSnValue +1
     
    Taking the above example, just make the changes needed to implement for your needs.
    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.