Skip to main content

Search

Search

Change the time manufactured date and Julian date update

Comments

1 comment

  • Avatar
    Peter Thane

    Hi,

    BarTender will use the PCs system date and time as standard.

    You could you the VB DateAdd feature to take off 6 hours and then 45 minutes from the date with something like this (for ease I added a field my label called DateTime and referenced this in my code but you could replace the first lien with Value = Now() instead)

     

    Value = Format.NamedSubStrings("DateTime").Value

    Value = DateAdd("h",-6,Value)

    Value = DateAdd("n",-45,Value)

    0

Please sign in to leave a comment.