跳至主內容

搜尋

搜尋

Hiding 2 Objects Based On A Access Database Field

評論

2 條評論

  • Avatar
    Shotaro Ito

    Object Automation in VB Script is introduced from BarTender 9.30 Automation edition or above, so unfortunately at 9.01 ”PrintVisibility" property was not supported.

    Besides, BarTender's text object will not be printed if data source is empty.

     

    Give share name to the data source of Text 17 (ex. TX17), then have script like..

    If Field("NoBestBefore") = "1" Then
        Value = ""
        TX17 = ""
    Else
        TX17 = "Best Before:"
    End if
    

    This topic might helps.

    http://forums.seagullscientific.com/index.php?/topic/2488-print-dont-print-based-on-database-value/?hl=printvisibility

     

    From BarTender 10.1 Automation edition or above, conditional print is introduced - such as Print when <Database Field X> is Not empty etc,  so please try the latest version too.

    http://www.seagullscientific.com/label-software/whitepapers/whitepaper_whatsnewinbt101.pdf

    0
  • Avatar
    Legacy Poster

    cheers for your help.

     

    after a few more Trial and Errors after posting, i've ended up doing something similar to such, though slightly bloated. 

    0

登入寫評論。