Zum Hauptinhalt gehen

Suche

Suche

Moving Y Position On Barcode

Kommentare

2 Kommentare

  • Avatar
    Shotaro Ito

    Try In BarTender Document Options > VB Script,

     

    OnNewRecord:

    Format.MeasurementUnits = btUnitsInches 
    If Format.Objects("Barcode 2").Value = "" then
      Format.Objects("Barcode 1").Y = 1.625
    Else
      Format.Objects("Barcode 1").Y = 1
    End If
    

     

    OnPrintJobEnd:

    Format.MeasurementUnits = btUnitsInches 
    Format.Objects("Barcode 1").Y = 1
    

    Make sure proper object name has been specified too.

    0
  • Avatar
    Legacy Poster

    Thank you it worked.

    0

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