跳至主內容

搜尋

搜尋

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

登入寫評論。