VBA - show clock time with accuracy of less than a second

前端 未结 5 1933
不知归路
不知归路 2020-12-11 08:59

Is there a way to use VBA (excel) to generate a clock time with accuracy to a tenth of a second or less?

eg:

Sub test()
    MsgBox Format(Time, \"hh:         


        
5条回答
  •  一生所求
    2020-12-11 09:50

    I think that Time doesn't give that information.

    You can use Timer for extra accuracy.

    In Microsoft Windows the Timer function returns fractional portions of a second. On the Macintosh, timer resolution is one second.

    Here is an example:

    MsgBox Format(Time, "hh:mm:ss:" & Right(Format(Timer, "#0.00"), 2))
    

提交回复
热议问题