Question:
How can I configure a SetPoint to be opened with the current time?
Solution:
To do so, you must create a script in the setpoint’s OnStartRunning event, and attribute to its Value property the metod Now (VBScript), which returns the current date/time.
Example:
Sub Text1_OnStartRunning()
Value = Now
End Sub
Value = Now
End Sub