跳到主内容

搜索

搜索

Moving Y Position On Barcode

评论

2 条评论

  • 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

请先登录再写评论。