Skip to main content

Search

Search

Moving Y Position On Barcode

Comments

2 comments

  • 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

Please sign in to leave a comment.