Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.
For more information and upcoming events around #dominoforever, please visit our Destination Domino Page
If your simple method is correct, then perhaps HCL can update the documentation. As of 11.0.1, the documentation states that Timer returns the elapsed time since midnight in seconds and that it is rounded to the nearest hundredth.
In my own tests of your suggestion (I tried it maybe 10 times), the first time Timer is called, it always ends with .5000 which makes me question its accuracy.
There is also another simple method to measure time with inbuild functions:
Dim dblStart AS Double
dblStart = Timer
' Your code
' Output time needed in seconds but with milliseconds decimal places
Print Format(Timer - dblStart, "0.000") & " s"
Yes, I saw that method before I posted. I also found a Windows API call that I used. However it would be nice to have a built in method to use.
You could use this method