メインコンテンツへスキップ

検索

検索

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

サインインしてコメントを残してください。