Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
WCrihfield
in reply to: kresh.bell

Here is another simple 'Timer' example rule, which uses a different method.

 

Dim oStart, oFinish, oTotal As Double
MsgBox("Click 'OK' to start the timer.",,"")
oStart = Microsoft.VisualBasic.DateAndTime.Timer
MsgBox("Click 'STOP' to stop the timer.",,"")
oFinish = Microsoft.VisualBasic.DateAndTime.Timer
oTotal = oFinish - oStart
MsgBox(oTotal & " seconds have elapsed.",,"")

 

If this solved your problem, or answered your question, please click ACCEPT SOLUTION.
Or, if this helped you, please click 'LIKE' :thumbs_up:.

 

Wesley Crihfield

EESignature

(Not an Autodesk Employee)