跳到主内容

搜索

搜索

Change the time manufactured date and Julian date update

评论

1 条评论

  • 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

请先登录再写评论。